Resultados da pesquisa a pedido "tcolor"

1 a resposta

Convertendo Inno Setup WizardForm.Color para RGB

Se eu tentar isso: [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) ...