EDMURP,
In text controls, a Format of > will "display" all entries in upper case even
though they are stored in Upper and Lower.
Or... use the AfterUpdate event of each text control to trigger the following code...
Me.[YourFieldName] = UCase([YourFieldName])
That will store each text value in UpperCase in the table.
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
"EDMURP" <(E-Mail Removed)> wrote in message
news:6EA68B21-8D94-4FFC-92A7-(E-Mail Removed)...
>I am new to creating databases and am able to create a basic database using
> wizards etc. I am trying to create a database where all the information
> entered by the user will be entered in upper case only no matter if they type
> in upper or lower case. Can someone help with this question??
>