Problems with MDI and docking...

  • Thread starter Thread starter martin.zugec
  • Start date Start date
M

martin.zugec

Hi,

I am writing application that should contain of multiple forms that
should cooperate with each other. Design should be similar to Outlook
style - one main navigation bar at left and rest.

However I got problem - whenever any MDI child is maximized, it will
appear behind main navigation tab :(

Any experiences and how to get this working????

Thanks,
Martin
 
Hmmmm, just to share...

If you specify form as MdiContainer at designer, Docking is NOT
working properly.

However if you specify form as MdiContainer at runtime, docking IS
working properly...

It appears to be bug in .net framework, as workaround I just specify
Me.IsMdiContainer = True at form load event.
 
Back
Top