I have created a new collection which I would like to contain labels that are within a particular groupbox on my form, but not the other labels on my form that are outside of the groupbox. I realize i could just add each label to my collection by using a simple "collectionName.add(labelName)" for each label, but I would like to use a "for each" loop with an enclosed "if" statement to test each control on my form to see if it is within the groupbox and then add it to my collection. Hopefully I have explained the situation clearly. Thank you for your help.