alanchinese Posted January 19, 2005 Posted January 19, 2005 the UsersForms opens up, but the orginal form hangs... why is it like that? Dim psi As New ProcessStartInfo psi.FileName = "UsersForms\bin\UsersForms.exe" psi.Arguments = "true true" Process.Start(psi) Quote
alanchinese Posted January 19, 2005 Author Posted January 19, 2005 sorry, i put "WaitToExit" in the real calling. Quote
Administrators PlausiblyDamp Posted January 20, 2005 Administrators Posted January 20, 2005 If you put WaitToExit then it will hang your application till the called executable exits. If this is causing problems you could either not wait and have both apps running. As an alternative you could handle the Process.Exited event to react to the spawned application closing. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.