0

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?

leppie
  • 115,091
  • 17
  • 196
  • 297

1 Answers1

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