Results 1 to 3 of 3

Thread: scrolling down a textbox

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2000
    Location
    Launceston, Tasmania, Australia
    Posts
    44

    Post

    I have my project keeping a log of its actions, but I need it to scroll down as it adds things to the log so you can see the latest entry without having to scroll down manually, how do you do this?

    thanx

    ------------------
    Mooose

  2. #2
    Frenzied Member CyberCarsten's Avatar
    Join Date
    Sep 1999
    Location
    Aalborg Ø, Denmark
    Posts
    1,544

    Post

    If you are using a ListBox, it'll automaticly add the scrollbars.
    To add scrollbars to a TextBox, set the MultiLine = True and Scrollbars = 3 ' Both

    Hope it helps.

    CyberCarsten
    [email protected]

  3. #3
    Junior Member
    Join Date
    Jan 2000
    Location
    USA
    Posts
    26

    Post

    thats very simple, just one line of code, do this in text1_change:

    Text1.SelStart = Len(Text1.Text)

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