Software Development Network>> Visual Basic>> How do I make listbox scroll to bottom?
I have a listbox in my program and what I want to do is have it scroll down once a new item is added to it.
How do I make listbox scroll to bottom?
Gabriel Méndez
ListBox1.Items.Add(...)
ListBox1.SelectedIndex = ListBox1.Items.Count-1
ListBox1.SelectedIndex = -1 '--- Optional