Hello:
How can I move other application's mouse cursor(e.g.Netscape) in my program?
Welcome any advice or sample!
Thanks in advance!
Printable View
Hello:
How can I move other application's mouse cursor(e.g.Netscape) in my program?
Welcome any advice or sample!
Thanks in advance!
Hi,
there are 2 global functions:
POINT pt;
pt.x=pt.y=0;
GetCursorPos(&pt);
SetCursorPos(pt.x+10,pt.y+10);
Gerd