Results 1 to 3 of 3

Thread: Multi line textbox

  1. #1

    Thread Starter
    Member
    Join Date
    May 2000
    Posts
    43

    Angry

    Ok i have a locked multiline textbox, and im inputting data from a web server, but when the data length is greater then the amount of line on the textbox the textbox doesnt scroll down to the new data, could someone please help me to do this as it is REALLY annoying me!
    Thanx
    Cease

  2. #2
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431
    You can adapt this code which adds text manually and then scrolls down to the new code.
    Code:
    Dim dblOldLength As Double
    dblOldLength = Len(Text1.Text)
    Text1.Text = Text1.Text & "Add and show these new words"
    Text1.SelStart = dblOldLength
    Text1.SelLength = 0

  3. #3

    Thread Starter
    Member
    Join Date
    May 2000
    Posts
    43

    Talking

    Thanx a lot
    Cease

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