What message do I need to trap in order to control the drawing of the caption buttons? (ie the close, minimize, maximize, etc. in a frame caption)
Thanks,
Matt Johnson
Printable View
What message do I need to trap in order to control the drawing of the caption buttons? (ie the close, minimize, maximize, etc. in a frame caption)
Thanks,
Matt Johnson
The one's off the top of my head:
WM_NCACTIVATE
WM_SETTEXT
WM_NCPAINT
WM_SYSCOMMAND
WM_SYSCOLORCHANGE
WM_SETTINGCHANGE
There are possibly more.
Regards,
Paul McKenzie
WM_SYSCOMMAND was the only was I was missing. That should help a lot. Thanks.
Matt Johnson