Possible Duplicate:
How to set Windows Forms Application (C++) to have an Aero/Glass background?
i want create a transparent window with WinApis with C++ in Windows 7 and i use VS2010 but i know how to make it transparent i can do that like this:
SetWindowLong(hWnd, GWL_EXSTYLE,GetWindowLong(hWnd, GWL_EXSTYLE) | WS_EX_LAYERED);
SetLayeredWindowAttributes(hWnd, 0, (255 * 70) / 100, LWA_ALPHA);
but i want a transparent window with transparency of title bars of normal windows of windows 7