Making all entries to a table upper case

G

Guest

Hello,

I would like assistance on what should be done to make all entries to a
table upper case if the person making the entries failed to turn on the cap
lock key to upper case.

Alvin.
 
D

Duane Hookom

You can use the After Update event of a control on a form like:

Me.txtYourTextBox = UCase(Me.txtYourTextBox)

For more immediate UCaseing, you could use the KeyPress event to upper case
the keystroke.

If you had a lot of these to program, you might try to make this more
generic.

I hate all caps.... :-(
 

Ask a Question

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.

Ask a Question

Top