如何跟踪鼠标状态?(50分)

  • 主题发起人 主题发起人 lbl20020123
  • 开始时间 开始时间
L

lbl20020123

Unregistered / Unconfirmed
GUEST, unregistred user!
我想编写一个跟踪程序,
请问当鼠标在桌面或别的程序窗体上运动时,
如何检测到?
 
Getcursorpos()
 
句柄、钩子。
Delphi帮助里也有一大堆,搜索mouse就有了。
 
Use Timer;
OnTimer()
begin
; ...
; GetCursorPos(...)
; ...
end;
 
mouse.CursorPos也行。
 
接受答案了.
 
后退
顶部