- Home
·
- String Manipulation
·
- To convert whatever characters you type in the textbox to uppercase (without any API's)
To convert whatever characters you type in the textbox to uppercase (without any API's)
To convert whatever characters you type in the textbox to uppercase (without any API's)
Rate To convert whatever characters you type in the textbox to uppercase (without any API's)
(2(2 Vote))
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
'The acronym "AUCK" willhelp you remember this code.
End Sub
To convert whatever characters you type in the textbox to uppercase (without any API's) Comments
No comments yet — be the first to post one!
Post a Comment