Exe included in Project

CoachBarker

Well-known member
Joined
Jul 26, 2007
Messages
133
Programming Experience
1-3
If I havce an exe file included in my project, what is the best way to call it to be launched.

What I am doing now is this.
proc = Process.Start("../../VPN/vpnsetup.exe")

Thanks
CoachBarker
 
Include it in project and set one of the Copy options to output folder. After compile you handle it relative to your application executable (application.startuppath)-
 
Back
Top