when you create a listview, it has an items property. this returns a collection.
so you can do
for each item in myListView.Items
...
next

now, if i make a class myItemGroup which contains the class myItem and a property items() that returns an array of myItems, how can i use this same functionality that i can do

for each myItem in myItemGroup
...
next

??? thanks for the help.. (i can explain more if this is unclear)