Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Zooming effect when minimizing windows
This article has not been rated yet. After reading, feel free to leave comments and rate it.
In win95 or NT4, there's a 'zooming effect' when an application is minimized
to the taskbar or restored from the taskbar.
However, this zooming effect does not seem to be presented in Delphi applications.
Peter Below, TeamB explains:
Yes, the reason for this is simple: if you click the minimize button of the
main form in a Delphi app, the main form is not minimized but hidden. In its
place the zero-size Application window is minimized. Having the animation
in place here gives some rather weird visiual effects so the VCl designers
decided to disable it.
You can switch the effect on or off with the following piece of code,
which works for Win95 and for NT 4:
 | |  | |
procedure TForm1.SwitchEffect(Sender: TObject);
var
Inf : TAnimationInfo;
begin
Inf.cbSize := sizeof(Inf);
Inf.iMinAnimate := 1;
SystemparametersInfo(SPI_SETANIMATION, 0, @Inf, SPIF_SENDWININICHANGE);
end;
| |  | |  |
Comments:
|