Jan 13, 2003 #1 lotusman Technical User Jul 6, 2001 8 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
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
Jan 13, 2003 #2 skiflyer Programmer Sep 24, 2002 2,213 US 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 Upvote 0 Downvote
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