How do I move a listbox to the last Item?
Note: I use VB 3.0
Thanks for some help ;)
Printable View
How do I move a listbox to the last Item?
Note: I use VB 3.0
Thanks for some help ;)
Do this
Code:
Combo.ListIndex = combo.ListCount - 1
Try this:
Code:For i = 0 To List1.ListCount - 1
List1.ListIndex = List1.List(i)
Next i