capture the mouse

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi,

How can i capture the mouse move event of my window form when i move it
ebove other control?
Thanks!
 
What do you mean by other control? Can't you use th OnMouseMove event
of the control? Do you want to use hooks in order to capture the
mouse cooridinates?

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
if your Window form is called myForm, type in Load event for example :
myForm.Capture=true;

Then, you only have to catch MouseMove event.

Hope it helps.
Ludovic Soeur.
 
Back
Top