Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
675
Problem with BindingSource technic
posted

Hi,

I try the new technic of  BindingSource and some color does not show any more in the grid

If I try with my older binding technic with the same DataSet everything is Ok

Example of my new and older Binding technic

Older technic (m_dsPlanification is a dataset with 4 DataTable)

m_grid.DataSource = m_dsPlanification  

m_dsPlanification.AcceptChanges()

 New Binding Technic

Dim bs As New BindingSource(m_dsPlanification, "root")

Me.m_grid.DataSource = bs

Me.m_grid.Refresh()

m_dsPlanification.AcceptChanges()

We would like to keep the new Binding technic because the performance are a lot faster :)

Do you ever hear about this problem?

Do you have any idea?

Thanks in advance and have a nice day!