- Home
·
- String Manipulation
·
- One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase
One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase
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
(1(1 Vote))
' 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
One Line code to change all keyed in Letters (string) in a textbox (text box) to Lowercase Comments
No comments yet — be the first to post one!
Post a Comment