I want to implement in my code the subclassing and change the color of some push button.
I created the declaration for my push button:
OriginalProc =(WNDPROC) SetWindowLongPtr(hWndButton, GWLP_WNDPROC, (LONG_PTR)EditBoxProc);
Which message is responsible for the painting of button?
Thanks!