i have an issue with the mousemove event in Windows 7.
I was trying to display a tooltip message on the mousemove event of my custom control
It works fine in XP but not in Windows 7.
In windows 7, it started firing the mousemove event continuously even though the mouse cursor stays over the control and not moving.
I removed the code to display tooltip from the mousemove event and it starts working fine.
Is there any problem in displaying the tooltip on mousemove event??
Any other solution to display the tooltip in mousemove??
i have an issue with the mousemove event in Windows 7. I was trying
Share
Can you maintain the last Position and only process the MouseMove event if it’s Position != the last position?