Ver Mensaje Individual
  #13  
Antiguo 12-03-2013
teecweb teecweb is offline
Miembro
NULL
 
Registrado: feb 2013
Posts: 64
Reputación: 14
teecweb Va por buen camino
GRACIAS SI FUNCIONO
Código Delphi [-]

procedure InitializeWizard();
var
  Country: String;
begin
  if RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\UNINSTALL\MozillaMaintenanceService\','UninstallString', Country) then
  begin
    // Successfully read the value
    MsgBox('Your country: ' + Country, mbInformation, MB_OK);
  end
  else
  begin
   MsgBox('Your country: ' , mbInformation, MB_OK);
    
  end;
end;
Responder Con Cita