vote up 1 vote down star

Is it possible to disallow minimizing of a form\application in delphi ?

I found the following code

procedure TForm1.WMShowWindow(var Msg: TWMShowWindow);
begin
  if not Msg.Show then
    Msg.Result := 0
  else
    inherited;
end;

but if I press windows key + M or Windowskey + D, then it still gets minimized is there a way to prevent this?

flag
in my case the user wants it to stay maximised – Anna Jun 3 at 11:10

2 Answers

vote up 2 vote down

or you can place a keyboard hook and catch winkey+d or winkey+m and keep your form maxmized.

link|flag
1  
and annoy the bejeezus out of your users... Nevertheless, +1 for it being a correct solution. – Lieven Jun 3 at 9:33
in my case the user wants it to stay maximised – Anna Jun 3 at 11:10
Hello Avar , thank you for your comment , can you please give me the code to keep the form maximised – Anna Jun 3 at 12:03
Anna, this may be what you are looking for (more like a kiosk). stackoverflow.com/questions/14451/… – Ryan VanIderstine Jun 3 at 12:28
i found something interesting : "Show Desktop" sends the command "ToggleDesktop", which, among other things, posts a DTM_RAISE message (WM_USER + 83) to the Desktop (Progman) to set it on foreground." eggheadcafe.com/forumarchives/win32programmerui/… i'll try to write something with this, need time :) – avar Jun 3 at 12:33
show 1 more comment
vote up 10 vote down

Setting BorderIcons.bsMinimized to false (removing it from the set) will work for WindowsKey + M but will not stop WindowsKey + D. I think that makes sense. The difference between the two is the first is asking all windows to minimize while the second is an explicit request by the user to see their desktop. Overriding the latter would probably annoy the user (similiar to forcing yourself into focus).

link|flag
Thanks Ryan for your input – Anna Jun 3 at 16:01

Your Answer

Get an OpenID
or

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