Linking External exe`s

James1974

New member
Joined
Sep 25, 2005
Messages
2
Programming Experience
Beginner
I am a complete newbie to .Net & would like a bit of help.
I would like to compile a form which has links to exe`s within the root folder of the project ie; Link 1 to install MyApplication.exe, Link 2 AnotherApp.exe, etc...
I can do this with:
System.Diagnostics.Process.Start _("c:/path/myapp.exe")
But i need this to run from a cd.

Any suggestions please?


 
if the other exe's are in the same root as the running application then Application.StartupPath is your friend combined with the Process.Start class
 
Back
Top