AD
Administrator
Syncfusion Team
March 19, 2005 09:48 AM UTC
I am not sure I understand.
Are you trying to dynamically change the datasource in the second grid as you click rows in the first grid?
And things work if the datasource in the second grid is actually changed (the new datasource is different than the old datasource) as you click rows in the first grid, but something is wrong when the new datasource is teh same as the old datasource? Exactly what is wrong?
Anyway, you might try calling CurrencyManager.Refresh on the currencymanager for the second grid after you have changed its datasource.
Dim cm as CurrencyManager = me.grid2.BindingContext(grid2.DataSource, grid2.DataMember)
cm.Refresh();