View Single Post
  #1 (permalink)  
Old 12-01-2008, 11:01 AM
Progress2007 Progress2007 is offline
VB.NET Forum Newbie
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Sep 2008
Posts: 25
Reputation: 21
Progress2007 is on a distinguished programming path ahead
Default 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.
Reply With Quote