Running an executable from same solution

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I have two winform projects in a vb.net solution. Can I run executable
generated by one project from the executable generated by the other project?
How?

Thanks

Regards
 
Hi

I have two winform projects in a vb.net solution. Can I run executable
generated by one project from the executable generated by the other project?
How?

Process Class.
 
Process Class.

To extend a bit, if you want to start an exe file from anywhere
including your application folder, you may use
"system.diagnostics.process.start".
 
Back
Top