Tagged Questions
5
votes
6answers
882 views
Vista application thumbnail
By design, the toolbar application thumbnail on Vista does not update when an application is minimized, since the minimized window itself is not redrawing. For a monitoring application I have, it ...
4
votes
1answer
109 views
How make a form always on top even if the Windows 7 Flip 3D is activated
I'm building an app which needs display a particular form always on top (this is a customer request), so far I'm using the SetWindowPos function with the HWND_TOPMOST value, and that works fine, but ...
0
votes
1answer
143 views
Using DwmIsCompositionEnabled (JwaDwmApi) on pre-vista causes error
Been trying to use the following code in order to check if Windows Aero is enabled:
function AeroEnabled: boolean;
var
enabled: bool;
begin
// Function from the JwaDwmapi unit (JEDI Windows Api ...