How I can Run External exe

ASH

Active member
Joined
Nov 20, 2005
Messages
30
Location
Riyadh
Programming Experience
Beginner
Hi,

I have a lot of projects compiled ( exe ) and I would like to run it from my vb.net project

Best regards,,,
 
to control the application that you open simply store a reference to the other app as you open it:
VB.NET:
Dim MyPrc As system.diagnostics.Process = system.diagnostics.process.start(application.start uppath & "exe name")
 
Back
Top