Li metto dentro due contenitori differenti (per esempio due Panel) e iteri nella proprietà Controls dei due Panel:
codice:
For Each c As Control In Panel1.Controls
    If TypeOf (c) Is Label Then
        c.Visible = False
    End If
Next