Ok, I have a list box that I am constantly adding information to bottom of. Is there a way to make it scroll down to last inputted Information?
Printable View
Ok, I have a list box that I am constantly adding information to bottom of. Is there a way to make it scroll down to last inputted Information?
After adding an Item set the ListIndex to the current ListCount, i.e.Code:List1.ListIndex = List1.ListCount - 1