Hi,
I have a windows form with two multicolumncombox, in form's Load event I am setting the following :
DataTable dt1 = getDataTable1(); //returns a datatable with three columns
multiColumnComboBox1.DisplayMember = "t1c1";
multiColumnComboBox1.ValueMember = "t1c2";
multiColumnComboBox1.DataSource = dt1;
DataTable dt2 = getDataTable2(); ////returns a datatable with three columns
multiColumnComboBox2.DisplayMember = "t2c1";
multiColumnComboBox2.ValueMember = "t2c2";
multiColumnComboBox2.DataSource = dt2;
When I am running my code, my first combobox gets published successfully, however the second does not get published,
and when I comment the first 4 lines the second combobox get published successfully,
Looks like there is a conflict between the two multicolumncomboboxes,
Appreciate your help
Thanks,