vote up 0 vote down star

I've found that when I take a simple form containing only a ribbon bar and a status bar, it's cutoff. The control you see above the status bar was later removed. The same cutoff occurs whatever control happens to be present. Later I removed the status bar & put a memo control there instead with the same result.

without ribbon bar: without ribbon bar

with ribbon bar: with ribbon bar

i've illustrated this with some drawing 2, 4, and 8 pixels from the edge.

not maximized maximized

as Chris Lively says below, there's clearly been a miscalculation of the sizes. how can i correct this?

Thank you for your comments!

flag

erm... not programming related? Actually, is this even a question? – luiscubal Mar 10 at 19:48
sure it's programming related. i'm writing a delphi app. – X-Ray Mar 10 at 21:35
Luis, how is this not programming related? If you don't know what Delphi is, or that this is about writing a Delphi app, maybe you shouldn't comment on the question. – Ken White Mar 10 at 21:43

1 Answer

vote up 1 vote down check

I misunderstood the problem with my previous answer.

There is a workaround to this miscalculation problem I've been able to come up with (quickly).

You can use a custom messagehandler for WM_SYSCOMMAND with the SC_MAXIMIZE wParam parameter. You can then resize your form using the following:

type
  TForm1 = class(TForm)
    // other stuff
    procedure WMSyscommand(var Msg: TWMSYSCOMMAND); message WM_SYSCOMMAND;



procedure TForm1.WMSysCommand(var Msg: TWMSYSCOMMAND);
var
  R: TRect;
begin
  // Test for SC_MAXIMIZE. If found...
  if Msg.CmdType = SC_MAXIMIZE then
  begin
    SystemParametersInfo(SPI_GETWORKAREA, 0, @R, 0);
    Top := R.Top;
    Left := R.Left;
    Width := R.Right - R.Left;
    Height := R.Bottom - R.Top;
    Msg.Result := 0; // Message handled
  end
  else
    DefaultHandler(Msg);
end;

The code above (tested on Vista 32-bit Home Premium with Aero/Glass enabled) works fine.

alt text

alt text

alt text

link|flag
nice work, ken! thank you! a couple of tiny corrections for whoever may use this later: if <b>Msg</b>.CmdType = SC_MAXIMIZE then ... SystemParametersInfo(SPI_GETWORKAREA, 0, <b>@R</b>, 0); – X-Ray Mar 11 at 0:08
nice work, ken! thank you! a couple of tiny corrections for whoever may use this later: [reposted because HTML not rendered]. if Msg.CmdType = SC_MAXIMIZE then ... SystemParametersInfo(SPI_GETWORKAREA, 0, @R, 0); – X-Ray Mar 11 at 0:09
Thanks for the correction, X-Ray. I'll fix the typo (I knew I should have copied and pasted instead of retyping. <g>) – Ken White Mar 11 at 0:21
i also discovered that it only works if the form is not set at design time to wsMaximized, this doesn't work. i can manage but if you know a solution to that as well that'd be wonderful. i can, of course change to only maximize at runtime. – X-Ray Mar 11 at 0:42
Hmmm... Did you try using the code as well (without the message related stuff, of course) in FormCreate or FormShow? FormCreate might be too early... I never use wsMaximized myself; I leave that choice to the user. (You could separate out the API call and size code to a separate method, (more) – Ken White Mar 11 at 0:50
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.