delphi7模拟鼠标移动和单击功能

  1.   oldPoint,newPoint:POINT 
  2.   GetCursorPos(&oldPoint); //保存当前鼠标位置。
  3.   newPoint.x = oldPoint.x+40;
  4.   newPoint.y = oldPoint.y+10;
  5.   SetCursorPos(newPoint.x,newPoint.y); //设置目的地位置。
  6.   mouse_event(MOUSEEVENTF_RIGHTDOWN,0,0,0,0);//模拟按下鼠标右键。
  7.   mouse_event(MOUSEEVENTF_RIGHTUP,0,0,0,0);//模拟放开鼠标右键。 
  8.       mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);//模拟按下鼠标左键。
  9.   mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);//模拟放开鼠标左键。
  10.   keybd_event(VK_SHIFT,MapVirtualKey(VK_SHIFT,0),0,0); //按下SHIFT键。
  11.   keybd_event(0x52,MapVirtualKey(0x52,0),0,0);//按下R键。
  12.   keybd_event(0x52,MapVirtualKey(0x52,0),KEYEVENTF_KEYUP,0);//放开R键。
  13.   keybd_event(VK_SHIFT,MapVirtualKey(VK_SHIFT,0),KEYEVENTF_KEYUP,0);//放开SHIFT键。
  14.   SetCursorPos(oldPoint.x,oldPoint.y);

参考CSDN。

你可能感兴趣的:(Delphi)