You cant select labels with selectnextcontrol...

You can do something like:
vb.net Code:
  1. For Each ctrl As Control In Me.Controls
  2.             If TypeOf ctrl Is Label Then
  3.                 Me.ActiveControl = ctrl
  4.                 MsgBox(Me.ActiveControl.Name)
  5.             End If
  6.         Next