Einzelnen Beitrag anzeigen

s-off
(Gast)

n/a Beiträge
 
#2

Re: Wie kann man die Textfarbe im Stringgrid ändern?

  Alt 31. Aug 2007, 10:10
Weiss nicht, wo Dein Problem liegt,
Delphi-Quellcode:
Procedure TForm1.Button1Click(Sender: TObject);
Const
   MyColors: Array[0..3] Of TColor = (clRed, clYellow, clGreen, clBlue);
Begin
   StringGrid1.Font.Color := MyColors[Random(Length(MyColors))];
End;
funktioniert ganz wunderbar.
Schonmal den Debugger bemüht?
  Mit Zitat antworten Zitat