I have a situation where I want to add data to a data source in chunks. Because retrieving large amounts of data will be slow, part of the data will be retrieved and bound to the grid as needed. What is the best way to rebind / update the grid when rows are added? Does any data source type behave better with the datagrid than others when the data source size is increased? (It will never shrink).
Thanks.Greg
Hi,
I'm suffering a similar problem, I have a BindingList<Support> (Support is a Class I made) is a Class, I add this as the DataSource like this :theDataGrid.DataSource = OneClass.List; //List is a property of OneClass and the list inside is created only once and modified later
When I update the bindingList from the DataBase or by adding element from UI some elements in my list are not visible (most of the time the elements that have just been modified)
Is there something to do to fix the problem??
Thanks
gle
Thanks, Joe. This is good info, particularly on the background threading.