Process.Start

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

Guest

Hi Everyone,

Does anyone know how to do the equivalent of Process.Start in a .NET 2003
Pocket PC project? I noticed this is available in .NET WM 5.0 but not in
2003. I am wanting to open up a separate executable but not return to the
calling code until the called executeable is complete.

Thanks,
Jesse
 
P/Invoke CreateProcess/ShellExecute follwed by WaitForSingleObject. Another
option is something like the Smart Device Framework, which already has this
rolled into a Process class that matches the desktop.

www.OpenNETCF.com/sdf
 
Back
Top