How to find Serial number of hard drive ?
You can find serial number of your built in hard drive by running below command from command prompt
wmic diskdrive get serialnumber
You can find serial number of your built in hard drive by running below command from command prompt
wmic diskdrive get serialnumber
Robotics Process Automation has been the recent buzzword in the market and though it has been around for quite some time, it has started to make noise now in software industry. People frequently ask me questions regarding what RPA is all about, whether it’s a good choice to be make a career move to RPA from .net and other technologies and how will it stand out in competition with other hot skills in market like Machine learning, IOT, Big Data etc.
Well my answer is, RPA is not here to compete with any of the existing or upcoming technology It would rather work in conjunction with these technologies to provide automated solutions to clients who have been burdened in past with too much manual effort.
string filePath = “file://” + path + txtTitle.Text;
var mmsIntent = new Intent(Android.Content.Intent.ActionSend);
mmsIntent.PutExtra(Android.Content.Intent.ExtraSubject, “audio is in the attachment”);
mmsIntent.PutExtra(“sms_body”,”Please see audio attachment”);
This option is only available in Release Mode.
From Build Mode to Release From Visual Studio ToolBar and this option will be enabled
While working on xamarin in visual studio once you install packages that have dependency on other packages say Android.Support.v4 or Android.Support.v7.CardView sometimes you get below error
If you are working on Xamarin in Visual studio and break point is not getting hit.Try below stuff
Check if the directory where you have your project doesn’t contain any special characters say “(” , “)”
1.) Delete bin, obj folders
2.) Delete *.user files
3.) Clean Solution
4.) Rebuild Solution
Hope this helps someone