For Each c As Control In GroupBox1.Controls
If TypeOf c Is CheckBox Then
If DirectCast(c, CheckBox).Checked Then
'use the Name?
MsgBox("checkbox " & c.Name & " is checked")
End If
End If
Next
check which of these CheckBoxes the user selected. How sh