VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase

by Mahaveer Lodha Bangalore (4 Submissions)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Fri 29th July 2005
Date Added: Mon 8th February 2021
Rating: (1 Votes)

One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase

Rate One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase




' by Mahaveer Lodha Bangalore
[email protected]
'converts lower case keyedins to Lower case

If KeyAscii >= 65 And KeyAscii <= 90 Then KeyAscii = KeyAscii + 32

End Sub

Download this snippet    Add to My Saved Code

One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase Comments

No comments have been posted about One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase. Why not be the first to post a comment about One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase.

Post your comment

Subject:
Message:
0/1000 characters