You can do that "as you type" and/or on LostFocus evnt:
VB Code:
Private Sub Text1_KeyPress(KeyAscii As Integer) KeyAscii = Asc(LCase(Chr(KeyAscii))) End Sub Private Sub Text1_LostFocus() Text1.Text = LCase(Text1.Text) End Sub
|
Results 1 to 6 of 6
Threaded View
|
Click Here to Expand Forum to Full Width |