Dec 27, 2001 #1 Beren1h Technical User Jul 19, 2001 104 US This is probably a really stupid question, but how do you loop through the items in a list box? Any help??
This is probably a really stupid question, but how do you loop through the items in a list box? Any help??
Dec 27, 2001 Thread starter #2 Beren1h Technical User Jul 19, 2001 104 US D'oh...nevermind... Upvote 0 Downvote
Dec 27, 2001 1 #3 s2001 Programmer Dec 7, 2001 132 US This should help u. For i = 0 To List1.ListCount-1 MsgBox List1.List(i) Next i Murali Bala Upvote 0 Downvote