Make Uppercase or lowercase in Textbox
how to Make Uppercase or lowercase in Textbox
Original Author: Sokha RUN
Code
'This to change it to Uppercase while typing
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End Sub
'This to change it to Lower case while typing
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(LCase(Chr(KeyAscii)))
End Sub
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.