I've got an MDI app in which has one mdichild form (basicFrm) containing a control.

The control has 10 parameters that I can set.

In a module I declare:
Public newForm() As New basicFrm

When I create instances of newform (by using Redim) I want them to have the control with the params already set.

My problem is that the Declaration on the Module occurs before I can set the params on the control contained in basicFrm.

So I end up having to set the params each time I create a "newform".

How can I fix this?