Multi application

Mat

Member
Joined
Jun 15, 2004
Messages
12
Programming Experience
10+
Hi everyone,

I'm looking for a way to start more then one time the same application. A way that when I start name.exe and if in this vb.net application i click on a button, it starts another name.exe. And I can continue like that. I also want to know if we can test this before creating the .exe (in the devellopment phase). Thx
 
VB.NET:
[size=2][color=#0000ff]Private[/color][/size][size=2][color=#0000ff]Sub[/color][/size][size=2][color=#51ff51] button1_Click([/color][/size][size=2][color=#0000ff]ByVal[/color][/size][size=2][color=#51ff51] sender [/color][/size][size=2][color=#0000ff]As[/color][/size][size=2][color=#51ff51] System.Object, [/color][/size][size=2][color=#0000ff]ByVal[/color][/size][size=2][color=#51ff51] e [/color][/size][size=2][color=#0000ff]As[/color][/size][size=2][color=#51ff51] System.EventArgs) [/color][/size][size=2][color=#0000ff]Handles[/color][/size][size=2][color=#51ff51] button1.Click[/color][/size]
[size=2][size=2][color=#0000ff][size=2][size=2][/size][/size][/color][/size][/size] 
[size=2][size=2][color=#0000ff][size=2][size=2]Shell(Application.StartupPath & "\name.exe")
 
[/size][/size][/color][/size][/size][size=2][size=2][color=#0000ff]End[/color][/size][size=2][color=#0000ff]Sub 
[/color][/size][/size]

this does work dureing devellopment phase as well
 
Last edited:
Back
Top