avatar
January 16th, 2000, 06:30 AM
Anybody know how to make the scroll bar on a list box stay down? Its for a simple chat prog.
|
Click to See Complete Forum and Search --> : Chat scroll bar avatar January 16th, 2000, 06:30 AM Anybody know how to make the scroll bar on a list box stay down? Its for a simple chat prog. Eric Gravert January 16th, 2000, 10:37 PM 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 codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |