Forcing Upper Case

ViRi

Registered User.
Local time
Today, 12:37
Joined
Jan 31, 2006
Messages
44
Hi

I have a simple database where I wish to force only Upper Case text even if user inputs Lower Case text, how can I do this?

ViRi
 
Put Me.txtBox = UCase(Me.txtBox) in the BeforeUpdate event of the textbox. Using *your* txtBox name of course. There are 2 or 3 other methods to do the same thing.
 
Hi RuralGuy

Thanks for your help I tried your method and I got a runtime error like this
Function set to the BeforeUpdate is preventing the data from being saved in the field.

ViRi
 

Users who are viewing this thread

Back
Top Bottom