I am using the combo box. I have it bound to a datatable. I set the ValueMemeber and DisplayMember. But it shows the enitre table. How can I get it to show only the display member?
Hello apalcer,
A possible approach to achieve this might be by using a code like the following:
ultraCombo1.DisplayLayout.Bands[0].Columns[ultraCombo1.ValueMember].Hidden = true;
Please feel free to let me know if I misunderstood you or if you have any other questions.