How can change all upper case to lower case letter in text1 on a command click?
Live life to the fullest!!
VB Code: Private Sub Command1_Click() Text1.Text = LCase$(Text1.Text) End Sub
Private Sub Command1_Click() Text1.Text = LCase$(Text1.Text) End Sub
Use [CODE] tags and rate useful posts VB: MSDN VBnet DevX vbAccelerator DB: W3Schools SQL TechOnTheNet's Oracle/PLSQL ConnectionStrings Misc (IT): Use XP look (manifest) in your apps (sample) MZ-Tools (free and cool VB add-in) Deploy your apps with Inno Setup Misc: Zeitgeist Movie ... so make the best of this test and don't ask why, it's not a question, but a lesson learned in time...
Works great thank you!!! Originally Posted by gavio VB Code: Private Sub Command1_Click() Text1.Text = LCase$(Text1.Text) End Sub
Forum Rules