MDI Form Problem
Hi all
I am using a Form to Create it as MDI Form. I have set IsMDIContainer property to TRUE so that it coluld be work as MDI Form, At this MDI Form I ahve used 3 panels which contains 3 dataGrids
Now My problem is that when i set a child form of this MDI Parent Form it does not show, or it is showing behind of the Panels.
I have Written code like this.
'' frmEdit is a form
frmEdit.MdiParent = Me
frmEdit.WindowState = FormWindowState.Maximized
frmEdit.Show()
Please help me so that this form colul made at top of all forms.
|