Hi
I am using Ultra Win Combobox to display values from SQL database.
But value member of Combobox seams to be case sensitive, Is there any way to change this property?
Example:
UltraWinComboBox => ComboBoxLocation
ComboBoxLocation.DataSource = "SELECT DISTINCT xyz FROM abc"
(Note: This is not case sensitive so I have only one entry for ABCDEF and abcDef)
Now when I load value in it, ComboBoxLocation.Value = AbcdEF ; it does not display it.
Thanks
Shivangi
Hi Shivangi,
Try setting the text property:
ComboBoxLocation.Text = AbcdEF
In the process of setting this property the control seems to select the row and set the value in a case-insensitive manner.
Note: this only works if the combobox value member and display member properties are set to the same datasource field.
regards
Craig
There is no way to change the case sensitivity of the Combo. You should Submit a feature request to Infragistics