How to know if the cursor on a specific control like a button in Win32? For this purpose WM_MOUSEMOVE exists but I can't get WM_MOUSEMOVE message?
What to do?
How to know if the cursor on a specific control like a button in Win32? For this purpose WM_MOUSEMOVE exists but I can't get WM_MOUSEMOVE message?
What to do?
There is no WM_MOUSEOVER
, AFAIK. There is a WM_MOUSEHOVER
, but that doesn't do what you want. Try WM_MOUSEMOVE
.