Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Making textbox force the user to type all caps

Status
Not open for further replies.

lotusman

Technical User
Jul 6, 2001
8
0
0
US
Does anyone know a way so that when a user types in a checkbox that whatever they type is inputted as all caps?

Thanks,
Andrew
 
Why not let them type however they like, and just convert the string to all caps when they finish?

i.e.
if your input is called theinput, then somewhere in your code include

theinput.toUpperCase();

-Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top