Einzelnen Beitrag anzeigen

Benutzerbild von KahPee
KahPee

Registriert seit: 12. Mai 2009
214 Beiträge
 
Turbo Delphi für Win32
 
#3

Re: Eigenschaft CustomColor von TColordialog

  Alt 14. Feb 2010, 19:43
Lösung gefunden:
Delphi-Quellcode:
function TColorToHex( Color : TColor ) : string;
begin
  Result :=

    IntToHex( GetBValue( Color ), 2 )+
    IntToHex( GetGValue( Color ), 2 )+
    IntToHex( GetRValue( Color ), 2 ) ;
end;



ColorDialog1.CustomColors[0]:='ColorA='+Tcolortohex(Pcol1.Color);
//...
  Mit Zitat antworten Zitat