I need to have all my data entered in all fields, on all forms, in CAPS.
I found the below code, but can't seem to get it to work in Access 2000
Any thoughts?
Private Sub Form_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub