you can find all label controls on a windows form.
Example:
In this exemple code we will display names of all labels of a form:
Private Sub FindLabelControls() For Each objCtrl As Control In Me.Controls If TypeOf objCtrl Is Label Then Dim Lbl As Label = DirectCast(objCtrl, Label) MessageBox.Show(Lbl.Name) End If Next End Sub