Is there a property that can set the minimum height of a TabbedMdi form. If I have a nested tabbed group with three child forms in three groups, I can moved the horizontal splitter to the point where any one of the forms "disappears" - I know it it's still there, but I'm anticipating my users doing this by accident and calling tech support about a disappearing form. Or do I have to handle the TabGroupResized event and examine the MdiTabGroup.Exent property. If the ClientExtent value is less than my TabHeight, programatically resize the group?
Bob
No, there is no property for this. You would have to handle the TabGroupResizing event and change the Extent as needed.
Thanks Mike - I just wanted to make sure that I wasn't spinning my wheels writing additional code where a property existed. I'll submit this as a future feature request.