Opening URL in WinCE .Net through web browser

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

Guest

I have an application. From the application I give a link to some URL and
this needs to be opened from IE browser dynamically. Can anyone tell me how
to achieve this?
The version of WinCE .Net is 4.1
 
Use the OpenNETCF.Diagnostics.Process class which wraps the ShellExecuteEx
API call. Pass in your URL and it will open with the default application
(e.g. IE).

Process.Start("http://www.microsoft.com");

Peter
 

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