Launch an application within another one.

  • Thread starter Thread starter Alex Dong
  • Start date Start date
A

Alex Dong

Hello Everyone:
In Desktop .NET framework, I can use System.Diagnostics.Process to execute
another application from within my own application, I haven't found this
class in CF Framework, I wonder whether can I do the same operation on my
PocketPC 2003?

Thank you.
Alex
 
In the compact framework you currently have to Platform Invoke (P/Invoke)
the CreateProcess API call - you'll also find this ready made in OpenNETCF's
WinAPI library (http://www.opennetcf.org/winapi.asp) which you can use
like:-

OpenNETCF.WinAPI.Core.CreateProcess("something.exe","")

Peter
 
Back
Top