How to programmatically disable window animation under Vista Aero? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:16:56Zhttp://stackoverflow.com/feeds/question/1137139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero1How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-07-16T12:14:19Z2009-12-04T16:40:03Z
<p>My application does automated screenshots of several dynamically created forms. This works perfectly under Windows XP, but doesn't work well under Vista Aero. Most of the forms appear semitransparent in the screenshots. The problem lies in the window animation of Aero.</p>
<p>How can I check/disable/enable this animation from inside a Delphi (2007+) program?</p>
<p>Or as an alternative: How can I make sure the form is displayed properly before making the screenshot?</p>
http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero/1140362#11403620Answer by Stijn Sanders for How to programmatically disable window animation under Vista Aero?Stijn Sanders2009-07-16T21:17:53Z2009-12-04T16:40:03Z<p>You can add a manifest resource to the exe file, to notify Vista you want that the application runs without Aero
<a href="http://www.google.be/search?q=vista+manifest+resource+delphi" rel="nofollow">http://www.google.be/search?q=vista+manifest+resource+delphi</a></p>
http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero/1140942#11409421Answer by David M for How to programmatically disable window animation under Vista Aero?David M2009-07-17T00:16:27Z2009-07-17T00:16:27Z<p>Disabling Aero would be a pity - in general it's not a good idea to change the user's choice of UI style.</p>
<p>You may be able to draw the form another way. One thing that comes to mind is using the <a href="http://docs.embarcadero.com/products/rad%5Fstudio/radstudio2007/RS2007%5Fhelpupdates/HUpdate4/EN/html/delphivclwin32/Controls%5FTWinControl%5FPaintTo@HDC@Integer@Integer.html" rel="nofollow">PaintTo</a> method to paint it to a canvas. (In fact, if you're taking screenshots of the forms as a way of getting what it looks like you probably don't need to show the forms at all - created them with Visible set to false and paint them to a bitmap. Only show them if the user needs to interact with them.)</p>
http://stackoverflow.com/questions/1137139/how-to-programmatically-disable-window-animation-under-vista-aero/1147242#11472420Answer by Uwe Raabe for How to programmatically disable window animation under Vista Aero?Uwe Raabe2009-07-18T10:51:25Z2009-07-18T10:51:25Z<p>The link in the comment from Shoban led me in the right direction. A quick check showed a wrapper for the DwmApi in the VCL and from that it went straight forward. Here is the code I successfully use now:</p>
<pre><code>uses DwmApi;
...
SaveDwmCompositionEnabled := DwmCompositionEnabled;
if SaveDwmCompositionEnabled then
DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
...
if SaveDwmCompositionEnabled then
DwmEnableComposition(DWM_EC_ENABLECOMPOSITION);
</code></pre>