Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
3answers
916 views

Vista/7: How to get glass color?

How do you use DwmGetColorizationColor? The documentation says it returns two values: a 32-bit 0xAARRGGBB containing the color used for glass composition a boolean parameter that is true "if the ...
21
votes
5answers
55k views

How to fix DWMAPI.DLL delay-load dependency under WinXP?

I have built a .dll under WinXP that claims it can't find DWMAPI.DLL when it's loaded. The problem is that this DLL is a Vista DLL, and this a known issue for XP users that have IE7 installed. The ...
18
votes
2answers
818 views

Aero: How to draw solid (opaque) colors on glass?

Using GDI+ to draw various colors: brush = new SolidBrush(color); graphics.FillRectangle(brush, x, y, width, height); You'll notice that no opaque color shows properly on glass: How do i draw ...
6
votes
1answer
542 views

Tests with TextBox under DWM glass

I'm trying to deal with TextBox text's color under DWM Glass. I read a lot of material, still no perfect solution. The almost perfect results code i found here: ...
5
votes
6answers
868 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
2answers
325 views

How can I make a region on my taskbar thumbnail appear transparent in Windows 7?

I'm developing a program that makes use of Windows 7 (and Vista) taskbar features. Right now I have a custom bitmap that will be shown in the taskbar thumbnail. The bitmap is created programmatic and ...
4
votes
0answers
494 views

What is the API to “create applications like Flip3D”

i am trying to figure out how to use DWM to render a copy of a Window into my own desired location. The only thing i can find to tell DWM to render somewhere is with the thumbnail APIs. But MSDN's ...
3
votes
1answer
3k views

How can I get Aero Glass on a Windows Form without Borders?

I'm trying to have Aero Glass look in my forms in VB.NET 2010 app with DWM API, but as function call suggests, it extends look of Frame to the client area, and if form has no border, nothing will ...
3
votes
3answers
362 views

Wait for disable aero to complete

My app has an option to disable aero by calling DwmEnableComposition(0) before capturing a screen image. As you know, disabling aero makes the screen go black then return to normal afterwards. On ...
3
votes
1answer
3k views

Handling WM_NCPAINT “breaks” DWM glass rendering on Vista/Aero

I am trying to make a window that alternates between having an Aero/Glass and a custom rendered frame (by handling WM_NCPAINT) based on a user setting. (Windows Vista). DwmComposition is enabled. My ...
2
votes
1answer
223 views

use DWM to distort a window under Windows 7

Windows 7 has in DWM function to distort a window. I am looking for information about how to use these functions (undocumented) to distort any window. Thanks in advance for your help, Regards,
1
vote
3answers
53 views

Is there any mechanism in Windows that would allow for system-wide color-inversion (i.e. night mode)?

One of my favorite Mac OSX apps is Blacktree's Nocturne, which inverts the colors of the whole screen such that you end up with a black-on-white display systemwide that is easy on the eyes in a dark ...
1
vote
1answer
355 views

How to make dwmapi (Desktop Windows Manager API) work in Windows XP?

I'm doing a windows application using dwmapi.dll on C# and it's not working in windows XP because XP didn't support Desktop Windows Manager API (dwmapi.dll). It's only supported in Vista and Win 7. ...
1
vote
3answers
838 views

Is it possible to capture a window with windows 7 DWM thumbnail in it?

I am starting to believe that you can do nothing with Windows API. I have two windows. One has a DWM thumbnail in it. What I want to do is, I want to be able to capture the screen of the window with ...
1
vote
1answer
541 views

DWM Composition toggle causes client area to lose alpha

I have a simple Windows application here: http://www.bengoodger.com/software/chrome/dwm/app.cc My app provides a customized glass frame for when DWM compositing is active, and a fully custom frame ...
1
vote
2answers
919 views

Checking if DWM/Aero is enabled, and having that code live in the same binary for 2000/XP/Vista/7

I know the title makes little sense, mostly because it's hard to explain in just one line. So here's the situation: I have a program who's binary is targeted at Windows 2000 and newer. Now, I went ...
0
votes
0answers
28 views

Full-screened app shows as black rectangle in Windows Flip 3D (pressing Win+TAB)

We have a DirectX application which can switch to full-screen mode. While in full-screen mode, pressing Win+TAB brings up the Aero Flip 3D interface, but the thumbnail for the application is a black ...
0
votes
0answers
72 views

DwmExtendFrameIntoClientArea Not working the same on Vista

Ive been using the class Glass_full from here: http://www.dreamincode.net/forums/topic/146813-glass-form-dwmapidll-api/ It works fine on Windows 7. Ive even managed to find a easy workaround for the ...
0
votes
1answer
131 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 ...
0
votes
1answer
365 views

Disable Aero Peek in WPF application

I want to disable Aero Peek in my WPF application (my application must be visible when user placed the mouse over the button "Show desktop"). I use this PInvoke signature: [Flags] public enum ...
0
votes
2answers
587 views

Programmatically (first-time!) enable aero theme/desktop composition

I want to enable desktop composition on a Windows 7 machine programmatically (preferrable C#) and already tried to do it with the infamous DwmEnableComposition P/Invoke. However, this does not seem to ...
0
votes
2answers
1k views

Windows Forms Glass Effect, Make ImageBox transparent

I have a windows form application, and I have extended the window's frame into the client area using DwmExtendFrameIntoClientArea to get the glass effect. Now I'm trying to show a transparent PNG ...
0
votes
1answer
439 views

Windows thumbnail preview with JNA (Java)

W32API.HWND targetHwnd = User32.INSTANCE.FindWindow('SunAwtFrame', 'Frame') W32API.HWND sourceHwnd = User32.INSTANCE.FindWindow('triuiScreen', 'EVE') W32API.HANDLE thumbnailH = new W32API.HANDLE() ...
0
votes
1answer
375 views

Why could DwmRegisterThumbnail fail?

I am trying to capture screen of a child window and render it on parent surface in Windows 7. HTHUMBNAIL thumbnail = NULL; HRESULT hr = S_OK; hr = DwmRegisterThumbnail( hWnd, visualHwnd, ...
0
votes
1answer
499 views

Vista live thumbnail issue with SetWindowRgn

I know I am probably missing something, but I can't seem to get windows to show the live thumbnail preview correctly when using a window that has a region. When hitting the minimize button the ...
-2
votes
0answers
76 views

QT QWidget custom moving of the window

Test case in one file: http://ideone.com/j6Lyr link against C:\Windows\System32\dwmapi.dll Testcase of a weird result. QWidget::move() crazies about and even resizes the window. The thing i'm trying ...