VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



To convert whatever characters you type in the textbox to uppercase (without any API's)

by Rajesh Sivaraman (4 Submissions)
Category: String Manipulation
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Tue 30th December 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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)





Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))    
'The acronym "AUCK" willhelp you remember this code.
End Sub

Download this snippet    Add to My Saved Code

To convert whatever characters you type in the textbox to uppercase (without any API's) Comments

No comments have been posted about To convert whatever characters you type in the textbox to uppercase (without any API's). Why not be the first to post a comment about To convert whatever characters you type in the textbox to uppercase (without any API's).

Post your comment

Subject:
Message:
0/1000 characters