以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 有什么办法可以控制鼠标去点击其他程序么? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=74557) |
-- 作者:大红袍 -- 发布时间:2015/9/14 10:53:00 -- 参考
http://www.foxtable.com/help/topics/2713.htm
模拟鼠标点击参考
全局代码
Public Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) <DllImport("user32.dll", EntryPoint := "SetCursorPos")> _ End Function
调用
SetCursorPos (599, 589) \'鼠标位置
|
-- 作者:lhxlhx -- 发布时间:2015/9/14 12:28:00 -- 收藏 谢谢分享
|