I have created a windows form application in VS2012. I have a button function in my form. How do I open a different application (separate project) once I click the button?
Asked
Active
Viewed 51 times
0
-
possible duplicate of [Launching a Application (.EXE) from C#?](http://stackoverflow.com/questions/240171/launching-a-application-exe-from-c) – Ignacio Soler Garcia May 22 '15 at 05:59
1 Answers
0
Application.Run(new MyForm());
should be your solution where MyForm is the form you want to open.

Amit Kumar Ghosh
- 3,618
- 1
- 20
- 24