How can change all upper case to lower case letter in text1 on a command click?
Printable View
How can change all upper case to lower case letter in text1 on a command click?
VB Code:
Private Sub Command1_Click() Text1.Text = LCase$(Text1.Text) End Sub
Works great thank you!!!
Quote:
Originally Posted by gavio