I have created an array to create 10 text boxes on my form, this work fine. However, I am now trying to make it so when I click on a textbox a message box appears telling me which textbox was clicked, what do I need to add to this:

Code:
Private Sub Text1_Click(Index As Integer)
MsgBox "Text1" & ???
End Sub
Thanks