Zitat von
maxmax:
Was bewirken eigentlich diese zeichen: %d %d %d
Das sind
Formatbezeichner Zitat:",D Integer Dezimal. Zeigt Integer als Dezimalzahlen an. Gilt auch für Integer-Werte in Datenstrukturen."
Noch eine Variante
Delphi-Quellcode:
var
Col: TColor;
begin
Col:= StringToColor('
$0000FF');
//jetzt Blau
Col:= ColorToRGB(Col);
Panel1.Color:=
RGB(GetBValue(Col), GetGValue(Col), GetRValue(Col));