Uppercase

  • Thread starter Thread starter Hendrix10
  • Start date Start date
H

Hendrix10

Is there a way to change all the characters in a field to upper case?
 
Is there a way to change all the characters in a field to upper case?

In the After Update event of the text box put this piece of code:

txtSAMPLE = UCase(txtSAMPLE)
 
Is there a way to change all the characters in a field to upper case?

Another solution is to put this piece of code in the On Key Press
event behind the text box:

KeyAscii = Asc(UCase(Chr(KeyAscii)))
 
THANKS

Another solution is to put this piece of code in the On Key Press
event behind the text box:

KeyAscii = Asc(UCase(Chr(KeyAscii)))
 

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

Similar Threads

upper case lower case 0
COMBO BOX vs Uppercase 6
input masks 1
Counting Characters in cells 9
Uppercase by position in field 3
Convert to uppercase 1
Change Case in a column 2
Validation for state abbreviations 2

Back
Top