How to Programmatically Start Internet Explorer on Windows CE

To start Internet Explorer in code (C# in this case), you will use the System.Diagnostics.Process class.

System.Diagnostics.Process.Start("IESample.exe", "http://www.jedej.com");

Notice that the name of the IE executable on Windows CE is “IESample.exe“.

Leave a comment