Aug 31, 2001 #1 jahlmer Technical User Aug 23, 2000 143 US Quick Question: How do you force uppercase in a field on a form? For instance, lowercase data is entered, and is then converted to uppercase when the record is saved. Thanks
Quick Question: How do you force uppercase in a field on a form? For instance, lowercase data is entered, and is then converted to uppercase when the record is saved. Thanks
Aug 31, 2001 #2 Philly44 Programmer Jul 17, 2001 277 CA In the Controls ControlSource put UCASE(FieldName). That will make Uppercase whenever the control loses focus. Upvote 0 Downvote
In the Controls ControlSource put UCASE(FieldName). That will make Uppercase whenever the control loses focus.
Aug 31, 2001 #3 JoeMiller IS-IT--Management Apr 27, 2001 1,634 US Another way is to place this code in the keypress event of the text box: KeyAscii = Asc(UCase(Chr(KeyAscii))) That automatically converts any character to UPPERCASE as the person types. Joe Miller joe.miller@flotech.net Upvote 0 Downvote
Another way is to place this code in the keypress event of the text box: KeyAscii = Asc(UCase(Chr(KeyAscii))) That automatically converts any character to UPPERCASE as the person types. Joe Miller joe.miller@flotech.net
Aug 31, 2001 Thread starter #4 jahlmer Technical User Aug 23, 2000 143 US Thanks a lot! You know, sometimes it's hard asking questions when you know you can figure it out, but thanks for your help! Upvote 0 Downvote
Thanks a lot! You know, sometimes it's hard asking questions when you know you can figure it out, but thanks for your help!