I am creating an instance of a secondary form
Dim frm as frmSecondary
frm.show(me)
But the secondary form is always over the initial form, how can i force the original to be ontop of the secondary form?
Printable View
I am creating an instance of a secondary form
Dim frm as frmSecondary
frm.show(me)
But the secondary form is always over the initial form, how can i force the original to be ontop of the secondary form?
In your code frm is the owned for and Me is the owner. While I've never actually done it this way the following should work:Now Me is the owned form and from is the owner.vb.net Code:
Dim frm as frmSecondary frm.AddOwnedForm(Me) frm.Show()