Ok, facciamo finta che vuoi far lampeggiare le label dalla 1 all 5, ecco il codice:

codice:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick        

    For Idx = 1 To 5 ' <<<<<<<<< da 1 a 5
         Me.Controls("Label" & Idx.ToString).Visible = Not Me.Controls("Label" & Idx.ToString).Visible
    Next

End Sub
Sergio