B
Bob
I have read you can change a form to MdiChild or from MdiChild back to
a normal form during run-time. I need to toggle a form between the
two.
If Me.IsMdiChild Then
Me.MdiParent = Nothing
Else
Me.MdiParent = Me.Owner
End If
Me.MdiParent = Nothing works but Me.MdiParent = Me.Owner or Me.Parent
or Me.Parent form does not return the form to a MdiChild. How can I
get a form to make itself a MdiChild? Suggestions?
Thanks
Bob
a normal form during run-time. I need to toggle a form between the
two.
If Me.IsMdiChild Then
Me.MdiParent = Nothing
Else
Me.MdiParent = Me.Owner
End If
Me.MdiParent = Nothing works but Me.MdiParent = Me.Owner or Me.Parent
or Me.Parent form does not return the form to a MdiChild. How can I
get a form to make itself a MdiChild? Suggestions?
Thanks
Bob