TDBAdvGrid read data problem.

I have 125 rows of database data in TDBAdvGrid.
I try this
for a := 0 to TDBAdvGrid.rowcount-1 do (125 lines)
memo.lines.add (TDBAdvGrid.cells[1,a]);

for some reason only read the first 27 lines and then stop record data to memo.

ok i understand that tdbadvgrid only keeps data that you can see. Thats why always take the data from grid i see on my screen.

If you do want the grid to have all records, set grid.PageMode = false

1 Like

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.