C Chronos Jul 25, 2003 #2 I know.... System.Diagnostics.Process.Start("http://yahoo.com"); opens it but how can I get the exe path?
I know.... System.Diagnostics.Process.Start("http://yahoo.com"); opens it but how can I get the exe path?
M Mihai N. Jul 26, 2003 #3 System.Diagnostics.Process.Start("http://yahoo.com"); opens it but how can I get the exe path? Click to expand... Not documented, but I don't think this can change to soon: From registry read the default value for HKEY_CLASSES_ROOT\http\shell\open\command This will give you the application handling the http protocol (aka the browser). If you try to retrieve the application associated to htm/html, you may end with a HTML editor. Mihai
System.Diagnostics.Process.Start("http://yahoo.com"); opens it but how can I get the exe path? Click to expand... Not documented, but I don't think this can change to soon: From registry read the default value for HKEY_CLASSES_ROOT\http\shell\open\command This will give you the application handling the http protocol (aka the browser). If you try to retrieve the application associated to htm/html, you may end with a HTML editor. Mihai