does the combobox have a property for Character Case? need everything entered in uppercase.
Printable View
does the combobox have a property for Character Case? need everything entered in uppercase.
You could convert the characters to upper case like this.
You could execute this on keypress.VB Code:
combobox1.Text = (combobox1.Text).ToUpper
Or use this , if didn't work , then try the other way
VB Code:
Me.ComboBox1.Text.ToUpper()
Uppercase it before sending it to the ComboBox .
VB Code:
.ToUpper