Hi i'm new to VB .NET but have been using VB6 for about a year. I am currently struggling with control arrays as they are not a feature of VB anymore

So far I have been able to 'duplicate' controls by creating a control array class, but I can't figure out how to add the new controls to a TabPage in my form - I can only add it to the form:
VB Code:
  1. Form1.Controls.Add(Button1)
Please show me to choose the parent controls of the controls created in my control array class.