D danceofwind Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-08 #3 用Win API: BOOL SetCursorPos( int X, // horizontal position int Y // vertical position ); For Example: SetCursorPos(100,100);
用Win API: BOOL SetCursorPos( int X, // horizontal position int Y // vertical position ); For Example: SetCursorPos(100,100);
K Kill Night Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-08 #5 先用GetCursorPos获得,再用SetCursorPos来移动
S skyrabbit Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-08 #6 控制鼠标的动作(包括移动、点击) http://www.gislab.ecnu.edu.cn/delphibbs/DispQ.asp?LID=248532
H hhzh426 Unregistered / Unconfirmed GUEST, unregistred user! 2000-06-09 #8 setcurpos(x,y);其中x,y的单位为像素,值为相对于屏幕的左上角。