For Each Item As Control In Me.Controls
If Typeof Item Is CheckBox Then
DirectCast(Item, CheckBox).Checked=False
End If
Next Item
For Each Item As Control In PanelName.Controls
If Typeof Item Is CheckBox Then
DirectCast(Item, CheckBox).Checked=False
End If
Next Item