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
 

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