You can use the ListBox's ListCount property and a loop. For example
Code:
Dim intI As Integer
For intI = 0 To List1.ListCount - 1
Debug.Print List1.List(intI)
Next intI
Will print each item in the ListBox to the Immediate Window.
|
__________________
semel insanivimus omnes
S Data in context = Information, S Information in context = Knowledge, S Knowledge in context = Experience
S Experience in context = Wisdom= Data
|