Lunching an other application from within a C# console app? (Like CreateProcess win api)

  • Thread starter Thread starter Bredahl jensen
  • Start date Start date
B

Bredahl jensen

I need to start an onther program within my manged application written in
C#.

How can i achieve this?


Many Thanks in advance

JB
 
Take a look at the Process class and Process.Start() (I think, that's from
memory) method. There are examples in the help file that do just that.

Chris
 
Many thanks.

Cheers!


JB
Chris said:
Take a look at the Process class and Process.Start() (I think, that's from
memory) method. There are examples in the help file that do just that.

Chris
 
Back
Top