Results 1 to 3 of 3

Thread: [RESOLVED] Change all upper case to lower case in text1

  1. #1

    Thread Starter
    Fanatic Member newprogram's Avatar
    Join Date
    Apr 2006
    Location
    in your basement
    Posts
    769

    Resolved [RESOLVED] Change all upper case to lower case in text1

    How can change all upper case to lower case letter in text1 on a command click?
    Live life to the fullest!!

  2. #2
    PowerPoster gavio's Avatar
    Join Date
    Feb 2006
    Location
    GMT+1
    Posts
    4,462

    Re: Change all upper case to lower case in text1

    VB Code:
    1. Private Sub Command1_Click()
    2.     Text1.Text = LCase$(Text1.Text)
    3. End Sub

  3. #3

    Thread Starter
    Fanatic Member newprogram's Avatar
    Join Date
    Apr 2006
    Location
    in your basement
    Posts
    769

    Re: Change all upper case to lower case in text1

    Works great thank you!!!
    Quote Originally Posted by gavio
    VB Code:
    1. Private Sub Command1_Click()
    2.     Text1.Text = LCase$(Text1.Text)
    3. End Sub
    Live life to the fullest!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width