VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it

by R Durgaprasad (1 Submission)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Wed 26th November 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it appears as R Durgaprasad. Place a textbox

Rate Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it



If Len(Trim(Right(Text1.Text, 1))) = 0 Then
        KeyAscii = Asc(UCase(Chr(KeyAscii)))
    End If
End Sub


Download this snippet    Add to My Saved Code

Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it Comments

No comments have been posted about Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it. Why not be the first to post a comment about Converts the text entered in a text box into title case. e.g. when user types r durgaprasad then it.

Post your comment

Subject:
Message:
0/1000 characters