(Gast)
n/a Beiträge
|
Re: StringGrid Zeile bei bestimmten Werten anders farbig mar
16. Feb 2009, 16:01
Falsche Reihenfolge
Delphi-Quellcode:
//Nur bei Spalte 0
If ACol <> 0 Then
Exit;
If StringGrid4.Cells[0, ARow] = '135746' Then Begin
StringGrid4.Canvas.Brush.Color := clYellow;
StringGrid4.Canvas.FillRect(Rect);
StringGrid4.Canvas.TextOut(Rect.Left, Rect.Top, StringGrid4.Cells[ACol, ARow]);
End;
|
|
Zitat
|