May 28, 2010 #1 cmmrfrds Programmer Joined Feb 13, 2000 Messages 4,690 Location US I have a 1 byte text field that I want to force to upper case when the user enters data. Is there an easy way to do this? Thank you.
I have a 1 byte text field that I want to force to upper case when the user enters data. Is there an easy way to do this? Thank you.
May 28, 2010 #2 Lilliabeth Technical User Joined Jan 26, 2005 Messages 1,190 Location US You can make it DISPLAY in upper case by putting a greater than symbol in the Format property --Lilliabeth Upvote 0 Downvote
You can make it DISPLAY in upper case by putting a greater than symbol in the Format property --Lilliabeth
May 28, 2010 1 #3 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US How are ya cmmrfrds . . . In the KeyPress event of the control: Code: [blue] If KeyAscii > 96 And KeyAscii < 123 Then KeyAscii = KeyAscii And 223 End If[/blue] See Ya! . . . . . . Be sure to see thread181-473997 [blue]Worthy Reading![/blue] Also faq181-2886 [blue]Worthy Reading![/blue] Upvote 0 Downvote
How are ya cmmrfrds . . . In the KeyPress event of the control: Code: [blue] If KeyAscii > 96 And KeyAscii < 123 Then KeyAscii = KeyAscii And 223 End If[/blue] See Ya! . . . . . . Be sure to see thread181-473997 [blue]Worthy Reading![/blue] Also faq181-2886 [blue]Worthy Reading![/blue]
May 28, 2010 Thread starter #4 cmmrfrds Programmer Joined Feb 13, 2000 Messages 4,690 Location US I appreciate the solution Aceman. Upvote 0 Downvote