I want to start in C# a process of Opera web browser with a given URL.
I'm using Windows Mobile 5 and Opera 9.5 Beta
Ive tried the following code (working of Internet Explorer)
I've tried to change "iexplore" in "opera" or "opera.exe" but no success at all.
Can you please give me a hand?
I'm using Windows Mobile 5 and Opera 9.5 Beta
Ive tried the following code (working of Internet Explorer)
Code:
System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = "iexplore"; proc.StartInfo.Arguments = "http://www.google.com"; proc.Start();
Can you please give me a hand?
Comment