Dear Friends,
I have a child form call frmDocument
I instantiate a form from it using
Dim frmD as frmDocument
Set frmD = New frmDocument
frmD.Caption = "Workspace" & counter
frmD.thisVariable = MyParameter
frmD.show
But how come thisVariable is nothing when I debug.print it out in the Form_Load event of frmDocument.
How can I solve it?
Thanks
