Hallo zusammen,
wie kann ich eine bestimmte Zelle farblich machen ?
Wenn ich das so mache:
Delphi-Quellcode:
var
Rect: TRect;
with StringGrid do
begin
Canvas.Brush.Color := clred;
Rect := StringGrid.CellRect(5,10);
Canvas.FillRect(Rect);
Canvas.TextOut(Rect.Left+2, Rect.Top+2, Cells[5, 10]);
end;
leuchtet die Zelle nur ganz kurz rot auf.
Gruss
Holger