I'm having an issue with resizing. I have a Form that is an MDIParent, and then another form that docks inside of it as an MDIChild (also has docked taskbars to the left,right, and above). My issue is that when I add another form inside the MDIParent form, it initially takes on the size that it was built with, even though I have it set to dock-fill.
However, once I RESIZE the parent form, it snaps back to the size it's supposed to be, and stays there... until I add another form, which begins the whole process over.
Is there any way I can call the 'Resize' event handler for my MDI Parent? Or is there anyway I can re-draw the new form MDIChild after it's been loaded? I know I can do something like..
MdiParent.Height ++;
MdiParent.Height --;
and that resizes my parent form, which in turn forces the inside MDIChild to snap to it's correct dimensions.