I have written a program in c# in visual studio 2010 professional , now i want to open a diifernt program like this :
if(e.result.text=="red") if this statement is true so i want
my windows calculator get open how i can do that do i need to give address of calculator in my program or what will be the syntax ,
please help i will be very thankfull to you.
Loading
VulpesPosted Jul 12, 2011, 5:10 AM
System.Diagnostics.Process.Start("calculator.exe");
See here (http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx) for full documentation and examples.
deepender singlaPosted Jul 12, 2011, 9:45 AM
System.Diagnostics.Process.Start("calculator.exe");
Abhimanyu K VatsaPosted Jul 12, 2011, 6:26 AM
deepender singlaPosted Jul 12, 2011, 5:09 AM
Dinesh BeniwalPosted Jul 12, 2011, 5:05 AM
Thanks