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.



Answer this question

How do I make listbox scroll to bottom?

  • Gabriel Méndez

    Try this:
    ListBox1.Items.Add(...)
    ListBox1.SelectedIndex = ListBox1.Items.Count-1
    ListBox1.SelectedIndex = -1 '--- Optional



  • How do I make listbox scroll to bottom?