S Shiller Nov 6, 2007 #3 Is there a way to change all the characters in a field to upper case? Click to expand... 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? Click to expand... In the After Update event of the text box put this piece of code: txtSAMPLE = UCase(txtSAMPLE)
S Shiller Nov 6, 2007 #4 Is there a way to change all the characters in a field to upper case? Click to expand... Another solution is to put this piece of code in the On Key Press event behind the text box: KeyAscii = Asc(UCase(Chr(KeyAscii)))
Is there a way to change all the characters in a field to upper case? Click to expand... Another solution is to put this piece of code in the On Key Press event behind the text box: KeyAscii = Asc(UCase(Chr(KeyAscii)))
H Hendrix10 Nov 6, 2007 #5 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))) Click to expand...
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))) Click to expand...