Google

Wednesday, March 14, 2007

prevent Windows from minimizing a Form?

implementation

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

No comments: