One of our mainframe programs is going away. I have converted the ascii "dump" to an Access 97, complete with front end form for data entry. The ladies doing the data entry are used to their text being converted to all caps on the fly. I understand that Access 97 does not have an input mask for all text within a text field to be converted; however, I did find code in an MS KB article:
OnKeyPress property:
Sub Field0_KeyPress (KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
Are there any other alternatives?
Thanks [sig]<p>Laura Velez<br><a href=mailto:lauravelez@home.com>lauravelez@home.com</a><br><a href= > </a><br> [/sig]
OnKeyPress property:
Sub Field0_KeyPress (KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
Are there any other alternatives?
Thanks [sig]<p>Laura Velez<br><a href=mailto:lauravelez@home.com>lauravelez@home.com</a><br><a href= > </a><br> [/sig]