Results 1 to 3 of 3

Thread: How to highlight?

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    NH
    Posts
    90

    Question

    How do I make the contents of a textbox highlight when I tab though my program?

    Thanks Scott

  2. #2
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    736
    Code:
    Private Sub Text1_GotFocus()
        Text1.SelStart = 0
        Text1.SelLength = Len(Text1.Text)
    End Sub

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    NH
    Posts
    90

    Thumbs up Thanks

    Thank you works great!
    scott

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