View Single Post
  #4 (permalink)  
Old 11-06-2008, 10:16 AM
JakeS's Avatar
JakeS
Lurker
Offline
 
Join Date: Nov 2006
Posts: 14
Reputation: 120
JakeS is keeping up the good workJakeS is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Opera 9.5 default?

Here's how PockeTwit launches URLs (in C#):
Code:
  string URL = "http://code.google.com/p/pocketwit/";

  System.Diagnostics.ProcessStartInfo pi = new System.Diagnostics.ProcessStartInfo();
  pi.FileName = URL;
  pi.UseShellExecute = true;
  System.Diagnostics.Process p = System.Diagnostics.Process.Start(pi);
So you can see it's just telling the OS to launch the URL. I hope this will help somehow. I'm sorry I don't know what registry settings the OS uses to determine how to handle it.