KeyTrapping
Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii >= 97 And KeyAscii <= 122 Then 'a-z KeyAscii = KeyAscii - 32 End If End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii >= 97 And KeyAscii <= 122 Then 'a-z
KeyAscii = KeyAscii - 32
End If
End Sub
(keytrapping.html)- by Paolo Puglisi - Modifica del 25/3/2019