How do you make a ComboBox force casing to uppercase? With a TextBox, I do
this:
TextBox txtName;
this.txtName.Ch aracterCasing = CharacterCasing .Upper;
And it makes whatever the user types appear in upper case, which is what I
want. But with a ComboBox, if I do this:
ComboBox TCombo;
this.TCombo.Cha racterCasing = CharacterCasing .Upper;
It fails, because CharacterCasing is not a member of the ComboBox class. How
should this be done? Thanks.
this:
TextBox txtName;
this.txtName.Ch aracterCasing = CharacterCasing .Upper;
And it makes whatever the user types appear in upper case, which is what I
want. But with a ComboBox, if I do this:
ComboBox TCombo;
this.TCombo.Cha racterCasing = CharacterCasing .Upper;
It fails, because CharacterCasing is not a member of the ComboBox class. How
should this be done? Thanks.
Comment