hallo,
möchte gerne im StringGrid eine neue Zeile hinzufügen.
Bin gerade schon am testen, komme leider nicht weiter!
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
i : integer;
begin
i := stringgrid1.RowCount;
Stringgrid1.RowCount := i+1;
StringGrid1.Cells[0,StringGrid1.RowCount-i]:= IntToStr(i);
StringGrid1.Cells[1,StringGrid1.RowCount-i]:= '' + DateToStr(Date)+ '';
StringGrid1.Cells[2,StringGrid1.RowCount-i]:= '' + TimeToStr(Time)+ '';
end;