To convert all character that is typed to upperacase automatically
To convert all character that is typed to upperacase automatically
Rate To convert all character that is typed to upperacase automatically
(2(2 Vote))
'just place a textbox control on your form, and name it txtTest
'add the following code into its KeyPress event
Private Sub txtTest_KeyPress(KeyAscii As Integer)
If KeyAscii >= 90 And KeyAscii <= 122 Then
KeyAscii = KeyAscii - 32
Else
KeyAscii = 0
End If
End Sub
To convert all character that is typed to upperacase automatically Comments
No comments yet — be the first to post one!
Post a Comment