Uppercase

S

Shiller

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)
 
S

Shiller

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)))
 
Top