Multiple instance

dreamwalker

New member
Joined
Nov 14, 2006
Messages
3
Programming Experience
Beginner
Hi all!!!
I want to create multiple instances of my app while my app is still running i.e. I want my app to create a/multiple copy(s) of its own but with different signatures... or may be with some attributes not present in the parent app (my app). Can I do this ??? Please somebody help!!!!
 
There's no issue with multiple instances. You app can start another instance of itself with just:
VB.NET:
Process.Start(Application.ExecutablePath)
I'm not really sure what you're talking about with the rest though, but I'm going to guess that it involves passing commandline arguments. Can you explain further?
 
Back
Top