Convertir Inno Setup WizardForm.Color a RGB
Si intento esto:
[Setup]
AppName=MyApp
AppVerName=MyApp
DefaultDirName={pf}\MyApp
DefaultGroupName=MyApp
OutputDir=.
[Code]
function ColorToRGBstring(Color: TColor): string;
var
R,G,B : Integer;
begin
R := Color and $ff;
G := (Color and $ff00) shr 8;
B := (Color and $ff0000) shr 16;
result := 'red:' + inttostr(r) + ' green:' + inttostr(g) + ' blue:' + inttostr(b);
end;
procedure InitializeWizard();
begin
MsgBox(ColorToRGBstring(WizardForm.Color),mbConfirmation, MB_OK);
end;
Obtengo: rojo: 15 verde: 0 azul: 0
Pero el resultado debería ser: 240 240 240 (gris)
¿Qué está mal?
Necesito obtener lo apropiadoTColor
y convertirlo a código de color RGB.