Kann hiermit einer was anfangen ?
Zitat:
After you assign the value to Cells[I, J], invoke the method that
responds to [Enter] directly:
Cells[I, J] := somestring;
EnterButton.OnClick(EnterButton);
Or, if you know the name of the method, just call that:
Cells[I, J] := somestring;
EnterButtonClick(EnterButton);
Der Wert steht ja im Stringgrid, aber was will der mit dem Button ??