Registriert seit: 5. Jul 2006
Ort: Magdeburg
8.276 Beiträge
Delphi 10.4 Sydney
|
AW: StringGrid aus Form2 in Form1 abspeichern
6. Sep 2016, 11:20
Hallo,
ColCount und RowCount setzen und dann
Delphi-Quellcode:
for i := 0 to StringGrid1.RowCount - 1 do
StringGrid2.Rows[i].Assign(StringGrid1.Rows[i]);
Heiko
|