sorry for the simple question...

  • Thread starter Thread starter Wardeaux
  • Start date Start date
W

Wardeaux

All,
How do I start another exe from my vb desktop app? want to create simple
setup wrapper that calls several setups in sequence...
MTIA
wardeaux
 
Hi,

Process.Start("MyApp.exe")

Ken
----------------------------
All,
How do I start another exe from my vb desktop app? want to create simple
setup wrapper that calls several setups in sequence...
MTIA
wardeaux
 
* "Wardeaux said:
How do I start another exe from my vb desktop app? want to create simple
setup wrapper that calls several setups in sequence...

'Shell' or 'System.Diagnostics.Process.Start'.
 
Thank you for both answers. Now, is there also a way to wait for the exe
and capture the exit code of the apps when they exit to validate they
completed successfully or handle errors?
MTIA
wardeaux
 
Process.WaitForExit() & Process.ExitCode

Thank you for both answers. Now, is there also a way to wait for the exe
and capture the exit code of the apps when they exit to validate they
completed successfully or handle errors?
MTIA
wardeaux
 
very cool!!!
thanks!
wardeaux

Shiva said:
Process.WaitForExit() & Process.ExitCode

Thank you for both answers. Now, is there also a way to wait for the exe
and capture the exit code of the apps when they exit to validate they
completed successfully or handle errors?
MTIA
wardeaux
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top