- Home
·
- String Manipulation
·
- * This Code is to Convert Only the First Character Being Entered in the TextBox Control to an Upper
* This Code is to Convert Only the First Character Being Entered in the TextBox Control to an Upper
* This Code is to Convert Only the First Character Being Entered in the TextBox Control to an Upper Case Letter. * This is Usefull while
Rate * This Code is to Convert Only the First Character Being Entered in the TextBox Control to an Upper
(1(1 Vote))
Private Sub Text1_KeyPress(KeyAscii As Integer)
If Len(Text1) = 1 Then
KeyAscii = Asc(UCase(Chr(KeyAscii)))
End If
End Sub
* This Code is to Convert Only the First Character Being Entered in the TextBox Control to an Upper Comments
No comments yet — be the first to post one!
Post a Comment