
Changing Title Background color
Quote:
>Does anyone know how to change the background of the title bar? In the
>May/96 VBPJ, {*filter*}ia Howlett describes the use of a "wood grained"
>background, but never states how to do it.
Windows draws the caption in repsonse to the WM_NCPAINT, and perhaps the
WM_NCACTIVATE message as well. You would need to supply your own handler for
the message. Check the docs for those messages and the functions
DrawCaption() and DrawFrameControl() which should take some of the pain out
of the exercise.
Regards,
Will