Uppercase

  • Thread starter Thread starter Hendrix10
  • Start date Start date
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)))
 
Back
Top