start another app in a seperate process

  • Thread starter Thread starter feng
  • Start date Start date
F

feng

I need to start another VB.Net app (dll or exe) from my
main VB.Net application. What's important here is that I
must have these apps run in different processes, not just
different threads. I don't think a 2nd appDomain can do
the work for me. So how should I do this?

Thanks
 
Hello,

feng said:
I need to start another VB.Net app (dll or exe) from my
main VB.Net application. What's important here is that I
must have these apps run in different processes, not just
different threads. I don't think a 2nd appDomain can do
the work for me. So how should I do this?

Use 'System.Diagnostics.Process.Start' to start the other application.
 
feng said:
I need to start another VB.Net app (dll or exe) from my
main VB.Net application. What's important here is that I
must have these apps run in different processes, not just
different threads. I don't think a 2nd appDomain can do
the work for me. So how should I do this?


System.Diagnostics.Process.Start("c:\my.exe")
 
Back
Top