im trying to change the .text property of whatever label is clicked.. to me this makes perfect sense and should run.

Please tell me whats wrong?
Code:
 Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click, Label3.Click, Label4.Click, Label5.Click, Label6.Click, Label7.Click, Label8.Click, Label9.Click, Label10.Click
        With CType(sender, Label).Name
            .text = XOval
        End With
    End Sub