Hi,
habe eine neue Stringgrid-Property eingeführt (CellReal). Das hier geht :
sgNr.CellReal [Col+2,Row] := r;
Das auch :
Delphi-Quellcode:
with sgNr do
CellReal [Col+2,Row] := r;
und das nicht :
Delphi-Quellcode:
with sgNr do
CellReal [Col+2,Row] := r;
Die Property selber :
property CellReal[ACol, ARow : integer] : real read GetCellReal write SetCellReal;
Die fragliche Stelle ist im OnKeyPress des Grids.
2mal Edit wegen Tags.