Hi All,
I am trying to update a collection bound to a DataGridView through a BindingSource and using a BindingNavigator for my grid commands.
One of these commands updates the data bound items in bulk in a separate thread. This causes a cross-thread operation exception to be thrown by the binding navigator control when the application is compiled in debug mode.
The issue is that some of these controls subscribe to the item and list changed events of the IBindingList (TList in my case) which are fired from a separate thread.
Has anyone worked on updating the ListBase class to support a synchronized invoke in the context of win UIs?
i.e. something like http://windowsclient.net/articles//asyncbindinglist.aspx
Thanks