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?