Holas gracias por tu respuesta.
quisiera saber que debo poner en el tercer y cuarto parametro...gracias
Código Delphi
[-]
[code]
procedure InitializeWizard();
var
Country: String;
begin
if RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Microsoft\Windows\Unnistall','', Country) then
begin
MsgBox('Your country: ' + Country, mbInformation, MB_OK);
end
else
begin
MsgBox('Your country: ' , mbInformation, MB_OK);
end;
end;