I have one form that needs to act as a template for 4 forms, each with its own set of variables.
Do I need to set them up like:
Or create an array?

Do I need to set them up like:
VB.NET:
Public frmSlot1, frmSlot2, frmSlot3, frmSlot4 As New frmSlotSetup
Or create an array?
VB.NET:
Public frmSlot(3) As frmSlotSetup
