How can I make a control array? Or the equivalent.
I am used to Visual Basic 6 which presents the option of whether to create a control array when I copy and paste a
A control array in VB6 solely existed to allow a single event handler for multiple controls of same type.
You do this in VB.NET by putting the controls into the Handles clause:
Handles
private sub Button_Click(...) Handles Command1.Click, Command2.Click, Command3.Click end sub