MDI Child from Child

P

Paul Remblance

Hi,

1. I have a MdiParent form called MDIParent in the namespace KLCost.
2. Which opens a child form (selection).
3. Which I would like to open multiple windows from selection but make them
child forms of the parent (1).

The following simple code does not display any forms (no errors) so I must
be missing something:

Dim parent As KLCost.MDIParent = New KLCost.MDIParent
Dim frm As New AuditDisp
frm.MdiParent = parent
frm.Show()

If I comment out "frm.MdiParent = parent" the form displays ok (but
naturally not a child of MDIParent).

Thanks, Paul
 

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