WinExec in C# ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi can anyone tell me how to call an external application from withing C# code?
I can't find WinExec anywhere? Do i have to go and look for the shell functionality for launching applicatoins from within the c# app? ANd if so where is it?
 
CSharpX said:
Hi can anyone tell me how to call an external application from withing C# code?
I can't find WinExec anywhere? Do i have to go and look for the shell
functionality for launching applicatoins from within the c# app? ANd if so
where is it?

System.Diagnostics.Process.Start

Erik
 
Back
Top