4
votes
How to prevent a Delphi MDI application from showing the caption of the maximized child
haven't had a chance to test this, but:
in the child OnResize, test for WindowState = wsMaximized.
If it is, then set Caption := ''
If not, set caption as required - you will need to need t …
2
votes
Showing MDI form as modal
The simplest method is to create a trivial subclass of the form, and set
FormStyle = fsMDIChild
AND
Form.Visible = False
in th …
1
vote
Delphi MDI Application Next Window menu item
I don't think you need to do anything - it is implicit in MDI apps (created with the new MDI app wizard in Delphi 2006 anyway).
It also "just works" in an app the was originally created in …
