Hallo,
wenn du das komplette StringGrid aktualisieren möchtest, dann geht das so:
StringGrid1.Invalidate;
Möchtest du nur eine bestimmte Zelle des Grids aktualisieren, dann kannst du die folgende Funktion verwenden:
Delphi-Quellcode:
procedure InvalidateGridCell (aGrid: TStringGrid; aCol, aRow: Integer);
var
R : TRect;
begin
R := aGrid.CellRect(aCol, aRow);
InvalidateRect(aGrid.Handle, @R, False);
end;
// Anwendung
InvalidateGridCell (StringGrid1, 2, 1);
Gruß Hawkeye