CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Chat scroll bar

  1. #1
    Join Date
    Nov 1999
    Posts
    21

    Chat scroll bar

    Anybody know how to make the scroll bar on a list box stay down? Its for a simple chat prog.


  2. #2
    Join Date
    Nov 1999
    Posts
    14

    Re: Chat scroll bar

    The easiest that I can come up with is this:
    Add the following code on the next line after an item is
    added to your list box.


    List1.ListIndex = List1.ListCount - 1







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

Featured