Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1315
wincombobox value member case sensitive
posted

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

Parents
No Data
Reply
  • 45
    Suggested Answer
    posted

    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

Children
No Data