Tagged Questions
-2
votes
1answer
1k views
Delphi: Maximize a Child Window in MDI Project
There is the good component to maximize a child window in a client area (the SHIFT key must be held) - NLDExtraMDIProps.
Or this code can be used:
procedure WMSIZE(var Msg: TMessage); message ...
2
votes
1answer
886 views
Delphi: Maximized Child Form in MDI Application
How can I maximize a child window that fits only the client area but not an entire parent window? I don't want that the child window disappears under a main menu or other controls of the parent ...
1
vote
3answers
6k views
Maximize MDI child form
I'm working on a legacy WinForms MDI application and have some trouble making the child forms behave as I want.
My objective is to have the child form always maximized (docked).
The problem is, that ...