1. MDI question - how to call other MDI child forms from a MDI chilid form?
2. MDI - how to open a child from a child within MDI parent form?
Hi,
I am trying to open a child from another child within MDI. I need to keep
everything within one parent form.
I wrote the following for each of the menu buttons on MDI parent:
Public Sub ShowMdiChildWindow(ByVal frm As Form)
If frm Is Nothing Then
Me.Show()
Else
frm.MdiParent = Me
frm.Show()
End If
End Sub
3. MDI - how to open a child from a child within MDI parent?
4. Subscribe MDI parent form to MDI child Closed event
5. Position MDI child at lower right corner of MDI parent
6. Closing a MDI Child from the MDI parent throws an exception
7. Mdi Child Form in Mdi Parent Form
9. How to make form MDI parent and MDI CHild
10. Prevent MDI child from going outside visible area of MDI parent?
11. Can an MDI child close and MDI parent?
12. Tricking Transparent Non-Mdi Child Forms into MDI Parent / Application
13. How do you bring MDI child windows to the front if MDI parent
14. How do you bring MDI child windows to the front if MDI parent has controls?
15. Problem showing MDi Child if Picture on MDI Parent ?