Click to See Complete Forum and Search --> : How to move mouse cursor?


September 28th, 1999, 10:44 AM
Hello:
How can I move other application's mouse cursor(e.g.Netscape) in my program?

Welcome any advice or sample!
Thanks in advance!

Gerd Mayer
September 28th, 1999, 11:47 AM
Hi,

there are 2 global functions:

POINT pt;
pt.x=pt.y=0;
GetCursorPos(&pt);
SetCursorPos(pt.x+10,pt.y+10);







Gerd