FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Utilities / Utilidades Default web browser / Navegador web por defecto
Posts: 990
Joined: Wed Oct 19, 2005 02:17 PM
Default web browser / Navegador web por defecto
Posted: Thu Dec 10, 2015 02:54 PM
Hi,

if you need to know the deafult web browser, you can use this registry key / si necesitas saber el navegador web por defecto, puedes usar esta clave del registro:

Code (fw): Select all Collapse
HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice\Progid


Code (fw): Select all Collapse
#include "FiveWin.ch"


#define  HKEY_LOCAL_MACHINE      2147483650
#define  HKEY_CLASSES_ROOT         2147483648
#define  HKEY_CURRENT_USER   2147483649
#define  HKEY_USERS              2147483651
#define  HKEY_CURRENT_CONFIG     2147483653

Local oReg, cName

   oReg := TReg32():New( HKEY_CURRENT_USER, "SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice")
   cName := oReg:Get("Progid")
   Msginfo(cName)


If you are using / Si estas usando

Chrome -----> ChromeHTML
Firefox -----> FirefoxURL
IE -----> IE.HTTP


Regards / Saludos
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Default web browser / Navegador web por defecto
Posted: Fri Dec 11, 2015 08:39 AM

gracias Felix :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 990
Joined: Wed Oct 19, 2005 02:17 PM
Re: Default web browser / Navegador web por defecto
Posted: Fri Dec 11, 2015 11:48 AM

Updated / Actualizado

Regards / Saludos

Continue the discussion