G
Guest
Is there a setting within a table that will change text entered in lower case
to upper case?
to upper case?
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.