Sharky hat Recht. TColor speichert Daten nicht im
RGB-Format, sondern komplett anders. Du musst wie folgt vorgehen:
Delphi-Quellcode:
var
r, g, b: Byte;
aColor: TColor;
RGB:
String[6];
begin
ColorToRGB(aColor, r, g, b);
RGB := IntToHex(r, 2)+IntToHex(g, 2)+IntToHex(b, 2);
end;
Greetz
alcaeus