J
John Smith
HOW TO: Avoid *ComboBox DropDownStyle = DropDown* change the text in the
textbox?
I am using a ComboBox to suggest and not to impose a list of words
DropDownStyle = DropDown
when setting the ComboBox.Text to a non capitalized word that exists
capitalized in the ComboBox list, the text shown is the one from the list
Ex:
ComboBox1.Items.AddRange(Split("Mary,John,Peter", ","))
ComboBox1.Text = "mary"
will display
"Mary" instead of "mary"
How to avoid the automatic change?
textbox?
I am using a ComboBox to suggest and not to impose a list of words
DropDownStyle = DropDown
when setting the ComboBox.Text to a non capitalized word that exists
capitalized in the ComboBox list, the text shown is the one from the list
Ex:
ComboBox1.Items.AddRange(Split("Mary,John,Peter", ","))
ComboBox1.Text = "mary"
will display
"Mary" instead of "mary"
How to avoid the automatic change?