to open a MDIChild from my main MDIparent form I would use
Dim ChildForm As New FrmComponent
ChildForm.MdiParent = Me
m_ChildFormNumber += 1
ChildForm.Text = "Add & Edit Components"
ChildForm.Show()
But I want to open another from from FrmComponent which used the same MDIParent.
at the moment I am using the code below but this opens the form outside the MDIParent
Dim ChildForm As New FrmComboMaint
ChildForm.Text = "Add & Edit Drop Down Items"
ChildForm.Show()
Me.lbAddOperation.Visible = False
Me.lbrefreshOperation.Visible = True
If _Journaling = True Then NewJournal("FrmComponents", "Add New Material", "")
My MDIParent is called FrmMain
Hope someone can help