I have extra labels created, they appear in a similar location of Form1.vb, but I cannot access the labels to remove them.
In Form1.Designer.vb, the following appears:

Code:
 ' Label4
        ' 
        Label4.AutoSize = True
        Label4.Location = New Point(0, 61)
        Label4.Name = "Label4"
        Label4.Size = New Size(0, 15)
        Label4.TabIndex = 11
I wish to be able to remove this label, and am aware that I cannot modify Form1.Designer.vb itself to do this.

What is a valid way to remove this label when I cannot access it in Form1.vb?

Thank you for any help.