I have a form with a text box I would like to be entered in all uppercase text values. How would I do this on the Format, Input Mask or some other way? Can this be done in the the Table definition as well as the Form.
Create an OnExit event and put the following code in it:
txtName = UCase([txtName])
Use the name of the field you wish to have made uppercase. Then when the user is tabing from one field to the next it will convert everything in the field they are just leaving to be upper case.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.