Launching another application or document

  • Thread starter Thread starter Matthew Smith
  • Start date Start date
M

Matthew Smith

How can I launch another application or document for another application
from my own? I have been looking at the .Net Compact Framework
documentation but can't seem to find this.

Thanks
 
You can either using P/Invoke to call the CreateProcess or ShellExecuteEx
API methods, or using the OpenNETCF.Diagnostics.Process class which matches
that of the full framework (www.opennetcf.org/sdf/)

Peter
 
Back
Top