How to launch url in default browser from winmobile app?
3 answers
Looks like this blog has your solution
http://www.businessanyplace.net/?p=code#startapp
It uses the CreateProcess call
0
a source to share
According to http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx , http://msdn.microsoft.com/en-us/library/d8fz649y.aspx and http: / /msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.filename.aspx , which you must execute:
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = "http://www.stackoverflow.com";
Process.Start(psi);
However, I have not tested this on CF.
0
a source to share