G Guest Nov 18, 2005 #1 I was trying to have some of my input in upper case letters. When I use the input code > nothing happens. What am I doing wrong?
I was trying to have some of my input in upper case letters. When I use the input code > nothing happens. What am I doing wrong?
D Douglas J. Steele Nov 18, 2005 #2 You need to recognize that Input Masks do not necessarily change what's stored in the tables. If you put ;0 at the end of your input mask, it should store what you've typed as formatted in the text box. The other (better, in my opinion) approach is to put code in the text box's BeforeUpdate event to use the UCase function to convert the text.
You need to recognize that Input Masks do not necessarily change what's stored in the tables. If you put ;0 at the end of your input mask, it should store what you've typed as formatted in the text box. The other (better, in my opinion) approach is to put code in the text box's BeforeUpdate event to use the UCase function to convert the text.