Hallo,
ich habe eine ältere Routine mal etwas poliert:
Delphi-Quellcode:
procedure InvalidateGridCell (aGrid: TCustomDrawGrid; aCol, aRow: Integer);
var
R : TRect;
begin
R := aGrid.CellRect(aCol, aRow);
InvalidateRect(aGrid.Handle, @R, False);
end;
Gruß Hawkeye