does the combobox have a property for Character Case? need everything entered in uppercase.
It's tough being an unhandled exception... ___________ VB.NET 2008 VB.NET 2010 ORACLE 11g CRYSTAL 11
You could convert the characters to upper case like this. VB Code: combobox1.Text = (combobox1.Text).ToUpper You could execute this on keypress.
combobox1.Text = (combobox1.Text).ToUpper
Things I do when I am bored: DotNetable
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
Me.ComboBox1.Text.ToUpper()
.ToUpper
Forum Rules