Adding a Minimize Button to a Window with Style
Environment: VC++ 6, Systems
Introduction
A few days ago, I faced a problem regarding a minimize button for a window with the style WS_EX_TOOLWINDOW. Because there is no support for a minimize button with this style, I had to do it on my own. While working on the solution, I knew I would post the solution on CodeGuru; so, here it is.
Basic Guidelines
This project was compiled on Visual C++ 6.0 and runs perfectly on WinXP Pro, but Visual Studio .NET 2003 is installed and used for the include files. If you find a way to work without Visual Studio .NET, please comment. Because my minimum OS is WinXP, I had to work with themes, but the basic code for an OS with no themes is there but has not been tested.
Includes
#include "uxtheme.h" #include "tmschema.h"
Search Directories (Modify if Necessary)
Include - C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include Lib - C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Lib
Additional Modules
UxTheme.lib Delayimp.lib

Comments
Check this out
Posted by Legacy on 06/27/2003 12:00amOriginally posted by: Digital Sunrise
http://www.catch22.org.uk/tuts/titlebar.asp
Replyquestion
Posted by Legacy on 05/21/2003 12:00amOriginally posted by: bluesun
When OS is Windows 2000 Server and IDE is Visual C++ 6.0,This project was not work.
Reply