I see a lot of people looping through a Listbox.ItemsSelected collection using a Variant. For example:
I'm wondering which objects are actually held in this collection (equivalent of ListItem in C#). Thanks!
Code:
dim varItem as Variant
for each varItem in ListBox.ItemsSelect
' Do something here
next
I'm wondering which objects are actually held in this collection (equivalent of ListItem in C#). Thanks!