I\'v got a combobox that I created as a user control(it\'s actually made up of a label, combobox and textbox). I\'m trying to bind a dataset to the combobox datasource, but
I had same issue while binding. I reversed the order and everything started working. The original code will look like this
((ucComboBox)ctrl).combobox.ValueMember = "radiology_id"; ((ucComboBox)ctrl).combobox.DisplayMember = "radiology_name"; ((ucComboBox)ctrl).combobox.DataSource = info;