I have a TDataSource under which a TClientDataset bound to a TStringGrid . I did this by right-clicking on the grid, selecting " Link to DB Datasource... " and selecting DataSource. This LiveBindings setting is for me.
When I run the application, the grid is filled with only 200 rows, although there are 5,000 records in the dataset.
I can not find any documentation on how to change the number of displayed lines or correctly allow the user to scroll through all the data.
I found a solid value of 200 in TBindScopeDBEnumerator.Create in the Data.Bind.DBScope module, and when I increase it to 10000 , I see all 5000 lines in the grid, but it looks like a hack.
What is the correct way to show over 200 rows in a TStringGrid?
source share