Scrolling a ListBox

  • Thread starter Thread starter Shayne H
  • Start date Start date
S

Shayne H

How do I make a listbox scroll down as new items are added to it so that the
last added item will always be visible?
 
Shayne H said:
How do I make a listbox scroll down as new items are added to it so
that the last added item will always be visible?

Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me)
 
Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count)

Demonstrates it a little more clearly . . .



Regards
 
Hello,

One Handed Man said:
Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count)

Demonstrates it a little more clearly . . .

LOL.
 
Back
Top