S Shayne H Sep 6, 2003 #1 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?
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?
A Armin Zingler Sep 6, 2003 #2 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? Click to expand... Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me)
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? Click to expand... Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me)
O One Handed Man [ OHM ] Sep 6, 2003 #3 Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count) Demonstrates it a little more clearly . . . Regards
Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count) Demonstrates it a little more clearly . . . Regards
H Herfried K. Wagner [MVP] Sep 7, 2003 #4 Hello, One Handed Man said: Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count) Demonstrates it a little more clearly . . . Click to expand... LOL.
Hello, One Handed Man said: Me.ListBox1.SelectedIndex = Me.ListBox1.Items.Add(Me.ListBox1.Items.Count) Demonstrates it a little more clearly . . . Click to expand... LOL.