How would I use the "For Each" to do the following....
Dim counter as Integer
For counter = 0 to myWidgetCollection.Count - 1
MessageBox.Show(myWidgetCollection.Item(counter).Name)
Next
***** I AM TRYING TO DO THIS EXAMPLE ...........
http://msdn.microsoft.com/library/de...ctionClass.asp
