Is it possible to make the menubar with a black background and a white forecolor instead of the grayish background with black text?
Please only reply if your going to help.
http://forum.valhallalegends.com/?board=general_prog;action=display;num=1044420275
i couldnt find it on there......
You have to process the WM_CTLCOLORSCROLLBAR message, and return a handle to the brush to color it.
wha? lol
Whenever your program receives that message, you need to specify a return value that is a handle to the brush you want to color it with.
could u plz tell me how to do that?
is all i do is put
CALL WM_CTLCOLORSCROLLBAR
?
a little more help plz
It's not a function; it's a Windows message constant for the SendMessage function.
Read here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/Windowing/MessagesandMessageQueues/MessagesandMessageQueuesReference/MessagesandMessageQueuesFunctions/SendMessage.asp
And here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/scrollbars/scrollbarreference/scrollbarmessages/wm_ctlcolorscrollbar.asp
And in general here:
http://msdn.microsoft.com/library/default.asp
(Memorize the last URL for best results)