|
If you are using a textbox on a Windows form, and you want the user to enter data in Uppercase, you could simply convert the data afterwards, or add the following line of code to the InitializeComponent(), or the Load() function of the form.
textBox1.CharacterCasing=CharacterCasing.Upper
This will convert the data to uppercase as it is being typed.
NB: Replace textBox1 with the name of the textbox you are using.
|
23 November 2009 IB
C#
|
Back To List
Did this article answer your question |
 |
Yes |
 |
No |
|
Other items of interest in our knowledgebase
|