R
Ron Pagliuca
This code is supposed to pop-up a child window (frmConnector):
Private Sub MenuItem5_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem5.Click
Dim p_frmConnector As New frmConnector()
p_frmConnector.MdiParent = Me
p_frmConnector.Show()
End Sub
-------- BUT ------
When I click the menu item above no form appears. It will appear if I
take p_frmConnector.MdiParent = Me out of the code. This code sits in
the parent form, I also have Me.IsMdiContainer = True in the form load
of the parent.
I have played around with activate, visible etc...
Please give me some direction as to why this is occuring and even how
to rectify it,
Thanks,
Ron Pagliuca
Private Sub MenuItem5_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem5.Click
Dim p_frmConnector As New frmConnector()
p_frmConnector.MdiParent = Me
p_frmConnector.Show()
End Sub
-------- BUT ------
When I click the menu item above no form appears. It will appear if I
take p_frmConnector.MdiParent = Me out of the code. This code sits in
the parent form, I also have Me.IsMdiContainer = True in the form load
of the parent.
I have played around with activate, visible etc...
Please give me some direction as to why this is occuring and even how
to rectify it,
Thanks,
Ron Pagliuca