Capital letters in a COMBOBOX. How can i do it ???

  • Thread starter Thread starter thomaz
  • Start date Start date
T

thomaz

How I can place in capital letters the text of a COMBOBOX?
For TEXTBOX I use:
textBox1.CharacterCasing = CharacterCasing.Upper;...
How to make the same for a COMBOBOX?
There isnt a CharacterCasing metod for a COMBOBOX...
 
How I can place in capital letters the text of a COMBOBOX?
For TEXTBOX I use:
textBox1.CharacterCasing = CharacterCasing.Upper;...
How to make the same for a COMBOBOX?
There isnt a CharacterCasing metod for a COMBOBOX...

It isn't too much trouble to do something like this I suppose:
cboBox.Items.Add (strValue.ToUpper());
 
Back
Top