views:

156

answers:

1

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?

A: 

There is no WM_MOUSEOVER, AFAIK. There is a WM_MOUSEHOVER, but that doesn't do what you want. Try WM_MOUSEMOVE.

Marcelo Cantos
sorry it was my mistake while writing, yes there is WM_MOUSEMOVE but what to with it to get mouse move event on a button?
whoi