up vote 1 down vote favorite
share [g+] share [fb]

how can I prevent a Delphi MDI application from showing the caption of the currently maximized MDI child in the caption of the MDI parent form?

Thank you in advance!

link|improve this question
feedback

3 Answers

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 to remember this.

link|improve this answer
This does work when the child form gets maximized, but not when it gets restored. Some more tweaking is necessary, but the solution should get the OP started. +1. – mghie Feb 20 '09 at 7:54
feedback

Tweaking Gerry's answer as mghie suggested:

private
  PreviousState: TWindowState;

procedure TMDIChildForm.FormResize(Sender: TObject);
begin
  if PreviousState = wsMaximized then
    Caption := 'Desired Caption'
  else if WindowState = wsMaximized then
    Caption := '';
  PreviousState := WindowState;
end;
link|improve this answer
feedback

You can't. MDI is outdated stuff, and support for it is deprecated (actually, it has been for years). The limitations probably won't ever be changed because of the deprecation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown