Excuse me if this is a stupid question but I am fairly new to VB...

I have a user control (myOcxControl.ctl) and a form (myOcxForm.frm)
that are part of an ocx (myOCX.ocx). I have another form
(myForm.frm) which is part of a vb project which uses myOCX.ocx

The user control has a private sub myOcxControl.command1_Click()

Which calls public sub myOcxForm.getData()

In getData() it calls...

Me.Show vbModal

I want it to change this line to

Me.Show vbModal, myForm

How do I get myForm visible to the modules in myOCX.ocx??????

Thank you

Andy