- Home
·
- String Manipulation
·
- This code will convert text in a textbox from lowercase to Uppercase and Uppercase to lowercase.
This code will convert text in a textbox from lowercase to Uppercase and Uppercase to lowercase.
This code will convert text in a textbox from lowercase to Uppercase and Uppercase to lowercase.
Rate This code will convert text in a textbox from lowercase to Uppercase and Uppercase to lowercase.
(1(1 Vote))
'Add two command buttons
'Add one text box
Private Sub command1_Click()
'Converts the text in the text box to UPPERcase
text1.Text = UCase(text1.Text)
End Sub
Private Sub command2_Click()
'Converts the text in the text box to lowerCase
text1.Text = LCase(text1.Text)
End Sub
This code will convert text in a textbox from lowercase to Uppercase and Uppercase to lowercase. Comments
No comments yet — be the first to post one!
Post a Comment