Hi,
When we enter some text in the textbox and press enter. All text should be in upper case in TextBox. How can do
that ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mayur DighePosted Jul 22, 2011, 12:04 PM
You can do the respective task by simply write below code
in KeyPress Event of the TextBox
means....
TextBox1.Text=TextBox1.Text.ToUpper()