Launch another application

1.7k Views Asked by At

I need to launch from my c#/compact framework application another .net CF application, which is located in ProgramFiles folder. What should I use? wceload.exe or anything else?

Thanks!

2

There are 2 best solutions below

0
On

Simply run your application using the Process class.

0
On

This is an example from Microsoft http://msdn.microsoft.com/en-us/library/h6ak8zt5.aspx.

using System;
using System.Diagnostics;
using System.ComponentModel;

class MyProcess
    {
void OpenApplication(string myFavoritesPath)
        {
            // Start Internet Explorer. Defaults to the home page.

            Process.Start("IExplore.exe");

        }
}