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
Combo.ListIndex = combo.ListCount - 1
Visual Basic 6 SP4 on win98se QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!
Try this: Code: For i = 0 To List1.ListCount - 1 List1.ListIndex = List1.List(i) Next i
For i = 0 To List1.ListCount - 1 List1.ListIndex = List1.List(i) Next i
Forum Rules