Start an application from another

  • Thread starter Thread starter Olaf Herrmann
  • Start date Start date
O

Olaf Herrmann

Hello,

in full framework you can start an application using :
System.Diagnostics.Process.Start ( path );

Is there an equivalent method in CF ?

Thanks

Olaf Herrmann
 
Public Declare Function CreateProcess Lib "coredll.dll" Alias _

"CreateProcess" (ByVal imageName As String, ByVal cmdLine As String, ByVal _

lpProcessAttributes As Integer, ByVal lpThreadAttributes As Integer, ByVal _

boolInheritHandles As Int32, ByVal dwCreationFlags As Int32, ByVal _

lpEnvironment As Integer, ByVal lpszCurrentDir As Integer, ByVal si As _

Integer, ByVal pi As Integer) As Integer
 
Back
Top