when change selected item in one combobox other combobox was change like first combobox.
.net 2
visual studio 2008 9.0.210
Ali Reza Salimzadeh Thursday, July 16, 2009 6:55 PM
The recommended way to avoid this is to use BindingSource objects.
The BindingSource acts as an intermediary between your control and the actual data object (such as a DataTable). Each BindingSource tracks a current record, so you need 3 BindingSources, one for each ComboBox. Bind each ComboBox to a BindingSource and bind all of the BindingSources to the same object (DataTable, BindingList, etc.).
The recommended way to avoid this is to use BindingSource objects.
The BindingSource acts as an intermediary between your control and the actual data object (such as a DataTable). Each BindingSource tracks a current record, so you need 3 BindingSources, one for each ComboBox. Bind each ComboBox to a BindingSource and bind all of the BindingSources to the same object (DataTable, BindingList, etc.).