vote up 1 vote down star

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.

How can I check/disable/enable this animation from inside a Delphi (2007+) program?

Or as an alternative: How can I make sure the form is displayed properly before making the screenshot?

flag
3  
Not delphi but we have a similar question here stackoverflow.com/questions/280480/… – Shoban Jul 16 at 12:59
Thanks for the hint - made me search inside the VCL a bit until I found: As always, Delphi has an implementation of the DWMApi and things turned out to be as easy as setting a Boolean property. – Uwe Raabe Jul 17 at 7:07

3 Answers

vote up 1 vote down

Disabling Aero would be a pity - in general it's not a good idea to change the user's choice of UI style.

You may be able to draw the form another way. One thing that comes to mind is using the PaintTo 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.)

link|flag
The screenshots are taken during an automated build. So the user won't bother at all. But the idea using PaintTo sounds interesting... – Uwe Raabe Jul 17 at 6:50
vote up 0 vote down

You can ass a manifest resource to the exe file, to notify Vista you want that the application runs without Aero http://www.google.be/search?q=vista+manifest+resource+delphi

link|flag
vote up 0 vote down

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:

uses DwmApi;
...
  SaveDwmCompositionEnabled := DwmCompositionEnabled;
  if SaveDwmCompositionEnabled then
    DwmEnableComposition(DWM_EC_DISABLECOMPOSITION);
...
  if SaveDwmCompositionEnabled then
    DwmEnableComposition(DWM_EC_ENABLECOMPOSITION);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.