G
Guest
Is there a setting within a table that will change text entered in lower case
to upper case?
to upper case?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Kirk said:Is there a setting within a table that will change text entered in
lower case to upper case?
Chris said:Hi Rick
Would you care to share the code you use to convert to upper case as
the user types into a form. I currently use the before update event
to convert it all after it has been entered. but it strikes me that
your way is a more elegant solution.
Rick Brandt said:In the KeyPress event...
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If you want it to apply to the entire form use the KeyPress event of the
form and set KeyPreview to Yes. Otherwise you use the KeyPress event of the
desired controls.
susan said:In Access 2003, Fileld properties > default value.... is this where
this is entered? I did so and it did not work.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.