Blackbelt012 0 Report post Posted August 12, 2007 Made by Blackbelt012 OK to start add a button or a menu strip to your form. ----------------------------------- Then double click the button you just added and it will take you to the code of your application. ----------------------------------- Next scroll to the very top of your form and add this code. using System.Diagnostics; ----------------------------------- Then scroll back down to the button you double clicked. ----------------------------------- After that add this code. Process.Start(@"C:\Program Files\Mozilla Firefox\firefox");just switch the C:\Program Files\Mozilla Firefox\firefox to the path of the program you want to start. ----------------------------------- Now if you want to test your program before you publish it hit the "F5" key and it will go into Debug Mode. Then just press the button and if done properly the program will open that you selected. Share this post Link to post Share on other sites
JaypeeHuda 0 Report post Posted September 12, 2011 this is great one!!!!!!!!!!!Here i am giving a simple example, how to start process using C#...check out the following links.......https://www.mindstick.com/Articles/628/process-start-in-c-sharp-with-examples Share this post Link to post Share on other sites