So I have an ultracombobox and I set the displaymember and value to two different columns of a dataset table that I bind to the data source. In a normal winform combo box there is a combobox.items.contains function. In dont see that in the ultracombobox.
I want to be able to check both display and value members
Thanks in advance, Tony
Hi Tony,
For the DisplayText, you can use the IsItemInList method.
For the Value, you can cast the UltraCombo into an IValueList and then use the GetText method to find the item with the matching Value.