vote up 1 vote down star
1

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

75% accept rate
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
What property is that? – Ian Boyd Dec 4 at 16:39
I didn't say it "is" a property - I said it is "as easy as setting" a property. – Uwe Raabe Dec 5 at 12:15
Can you give those of us, trying to solve the same problem, a hint? – Ian Boyd Dec 7 at 21:14
show 1 more comment

3 Answers

vote up 0 vote down

You can add 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 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

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
i really don't like this solution; disabling Desktop Composition isn't something i would want anyone else who finds this question to do. i assume the animation time is configurable in the system, but assume it's 200ms. Start a 200ms timer during OnShow to take a screenshot then. If the timer is still running when OnClose fires, then take a screenshot then. – Ian Boyd Dec 4 at 16:44
That is indeed a possibility. Althoug, I wouldn't do it in my case as it would increase the time used a lot, just because of the shear number od the screenshots to take. But at least it is an option. – Uwe Raabe Dec 5 at 12:18

Your Answer

Get an OpenID
or

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