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?