calling an mdi child from an mdi child

B

Bernie Yaeger

I'm trying to open an mdi child from a different mdi child, thus:
Dim newmdichild As New printprocess

newmdichild.Parent = Me.MdiParent

newmdichild.Show()

Yet the parent line does nothing, as the new form is bound by nothing. How
can I call printprocess so that it is contained within the mdi container, as
the first form is?

Thanks for any help.

Bernie Yaeger
 
B

Bernie Yaeger

Nevermind - figured it out: so long as this is called
newmdichild.MdiParent = Me.MdiParent

BEFORE me.close, it works fine.

Bernie
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top