property Index of a control in VB6 vs .NET

Hi,
in VB6, you can group controls together and call them just by the index property.
Example :
Private Sub Text1_Change(Index As Integer)
Text1(Index).Text = "Something"
End Sub

Do you know if it exists in .Net and if yes, how to do it ?

Thanks a lot

[286 byte] By [codefund.com] at [2007-12-16]
# 1
Nothing corresponding directly to this. You can create your own array of controls, of course, by simply adding each control to an array (or some other data structure). If your intent is to have multiple controls share the same event handler, you can take advantage of .NET's ability to have multiple controls share a single event handler, using the Handles clause on the event procedure.
codefund.com at 2007-9-8 > top of Msdn Tech,Windows Forms,Windows Forms General...