Make everything Upercase

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that I would like everything to be uppercase on. Can someone
please tell me how to do this. For example, I have a field named
[BatchType], what code would I need to make all entries uppercase?

Thank you in advance.
 
One thing I forgot to mention is that I dont want the actual data to change,
I just want it to be uppercase on the form that I print. The reason I want
this is because we use optical scanning and uppercase is easier to read, but
in every other form I want the proper case.
 
I have a form that I would like everything to be uppercase on. Can someone
please tell me how to do this. For example, I have a field named
[BatchType], what code would I need to make all entries uppercase?

Thank you in advance.

Once simple way to accomplish this is to place a greater than sign (>)
in the Format property of each text field. The user can type in any
case, but the text will convert to upper case when the text box loses
focus. Of course, although certainly a standard look, all upper case
can be hard on the reader's eyes, so a lot of this on a form might be
ugly to look at.

HTH
- GH
 
One thing I forgot to mention is that I dont want the actual data to change,
I just want it to be uppercase on the form that I print. The reason I want
this is because we use optical scanning and uppercase is easier to read, but
in every other form I want the proper case.

If you'll be printing, print from a Report, rather than a Form. Set the Format
property of each such textbox on the report to

(just a single greater-than character). It will display (in that textbox) in
upper case.

John W. Vinson [MVP]
 

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

Back
Top