I’ve got a DataGridView control, which is to hold around 100,000 records.
It’s currently taking around 10 seconds or so to populate ~100k records (and nothing would be happening in this time). The records are not being populated from a database, but rather manually.
Since it does not support paging, is there a control which has similar functionality and supports paging? Or is there any way to load data even faster?
Possible solution: Use a standard DataGridView and add buttons to load different sections of your data source at a time.
A great and simple example