the > does not generate anything in uppercase.

R

rjs

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

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.
 
Top