run other app?

  • Thread starter Thread starter Microsoft MVP ±i®Ë©÷ for VS.NET
  • Start date Start date
M

Microsoft MVP ±i®Ë©÷ for VS.NET

How can I execute other app in my .NET CF app?
 
To execute another managed application, you can use AppDomain.CreateDomain
followed by AppDomain.ExecuteAssembly. If you want to execute a native
application (or don't know whether your target is managed or native) you
can also P/Invoke to a native Win32 API such as CreateProcess or
ShellExecuteEx.

This posting is provided "AS IS" with no warranties, and confers no rights.
 

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