Make sure the two comboboxes use different BindngContext objects.
BindingContext bc = new BindingContext();
this.comboBox1.BindingContext = bc;
comboBox1.DataSource = _dataSet.Tables['orders'];
comboBox1.ValueMember = 'CustomerID';
comboBox1.DisplayMember = 'CustomerID';
bc = new BindingContext();
this.comboBox2.BindingContext = bc;
comboBox2.DataSource = _dataSet.Tables['orders'];
comboBox2.ValueMember = 'CustomerID';
comboBox2.DisplayMember = 'CustomerID';
Share with