1. MDI - how to open a child from a child within MDI parent form?
2. MDI question - how to call other MDI child forms from a MDI chilid form?
Hi all. I have a MDI child form that is a systems maintenance form. I have
7 buttons that will be used to call 7 lookup table maintance forms. My code
to call the lookup table child forms from the child form is the problem.
How do I code it?
The MainFrame.vb is the MDI container. I tried setting that as the MdiParent
but no joy... Obviously I can't use .Me as .Me is a child form also.. So
how do I do this?
Thanks in advance..
Robert
Here is the one that calls the maintence form for Color:
Private Sub btnColor_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnColor.Click
Dim frmCOL As New frmColorMaint
frmCOL.MdiParent = GRS2.MainForm <------- this is the MainFrame.vb
that is the MDI container
frmCOL.Show()
End Sub
3. MDI - how to open a child from a child within MDI parent?
4. How do I write to the MDI Parent statusbar from a MDI child form?
5. Position MDI child at lower right corner of MDI parent
6. Closing a MDI Child from the MDI parent throws an exception
7. Best way to Call method on MDI Parent from MDI child (vb.net 2005)
8. Can an MDI child listen for mainmenu events on the MDI parent?
9. Can an MDI child close and MDI parent?
10. How do you bring MDI child windows to the front if MDI parent
11. How do you bring MDI child windows to the front if MDI parent has controls?
12. Problem showing MDi Child if Picture on MDI Parent ?
13. Reference a MDI Child Procedure from the MDI Parent
14. Weird Problem: Closing MDI Parent re-directed to MDI Child
15. Using MDI child (in C++) from an dotnet MDI parent