Results 1 to 3 of 3

Thread: [RESOLVED] 2002 Access with VB6, Text box wraping

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Dec 2004
    Posts
    128

    Resolved [RESOLVED] 2002 Access with VB6, Text box wraping

    I am trying to get the text when x charicters are inputed you can keep typing and the text automaticly starts on the next text box. Any help you can give me would be great!

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: 2002 Access with VB6, Text box wraping

    You could try something like
    VB Code:
    1. Private Sub Text1_Change()
    2. If Len(Text1.Text) > 25 Then Text2.SetFocus
    3. End Sub
    Bare in mind, you could hit the limit of one textbox in the middle of a word.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Dec 2004
    Posts
    128

    Re: 2002 Access with VB6, Text box wraping

    This fixed it THANKS!!!

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