CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 钩子与API截获 搜索资源 - mouse event

搜索资源列表

  1. TrackUserIdle_src

    0下载:
  2. The approach used here is really a simple one. We intercept the mouse and keyboard activities of the user by hooking into the OS s mouse and keyboard events using the API SetWindowsHookEx(). It is important to note that the hooks we are installing ar
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:5134
    • 提供者:l
  1. VC_Mouse_Hook_intercept_mouse_control_source_event

    0下载:
  2. VC++鼠标Hook截获鼠标移开事件含控件源码VC + + Mouse Hook intercept the mouse away with the control source event-VC++ Mouse Hook intercept the mouse away with the control source event
  3. 所属分类:Hook api

    • 发布日期:2017-03-26
    • 文件大小:60118
    • 提供者:fangming
  1. mousehook3

    0下载:
  2. 截获鼠标移动事件的钩子例子- Intercepts the mouse to move the event the clasp example
  3. 所属分类:Hook api

    • 发布日期:2017-11-11
    • 文件大小:70867
    • 提供者:non
  1. HookMouse

    0下载:
  2. 一个简单的鼠标钩子程序 Windows系统是建立在事件驱动的机制上的,说穿了就是整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,用它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,外壳钩子可以截取、启动和关闭应用程序的消息等。本文在VC6编程环境下实现了一个简单的鼠标钩子程序,并对Win32全局钩子的运行机制、Win32 DLL的特点、VC6环境下的MF
  3. 所属分类:Hook api

    • 发布日期:2017-03-30
    • 文件大小:46884
    • 提供者:冰雨
  1. HOOKstudy

    0下载:
  2. hook 手册 Windows系统是以消息处理为其控制机制,系统通过消息为窗口过程(windows procedure)传递输入。系统和应用两者都可以产生消息。对于每个输入事件,例如用户按下了键盘上的某个键、移动了鼠标、单击了一个控件上的滚动条,等等,系统都将产生一系列消息-hook Manual Windows message handling system is based on its control mechanism, system, through the message to th
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:264746
    • 提供者:txyms
  1. TestMouseHook

    0下载:
  2. 屏蔽鼠标和按键,可以学习一下Hook编程的有趣性-escape mouse and keyboard event
  3. 所属分类:Hook api

    • 发布日期:2017-05-15
    • 文件大小:3654464
    • 提供者:buyaowenwoshuia
  1. KeyMouseHook

    0下载:
  2. .NET框架下一个键盘鼠标钩子的完全封装。当截获事件后,会引发.NET框架的窗体标准键盘、鼠标事件,非常容易操作。使用的语言为Visual Basic.NET-. NET under the framework of a keyboard and mouse hook complete package. When the intercepted event, it will trigger. NET Framework form the standard keyboard, mouse even
  3. 所属分类:Hook api

    • 发布日期:2017-04-05
    • 文件大小:3494
    • 提供者:SYC
  1. AutoMatism

    0下载:
  2. 记录键盘鼠标事件,事件保存于数据库. 数据库与数据表可以创建-Record keyboard and mouse events, the event stored in the database. Database and data tables can be created
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:467358
    • 提供者:张伟权
  1. cs7_gl2

    0下载:
  2. 对鼠标滚轮事件进行处理,钩子方式,对鼠标滚轮事件进行处理,钩子方式-On the mouse wheel event processing
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:3065
    • 提供者:hxjtxd
  1. Mousemoved

    0下载:
  2. 易语言源代码,鼠标移入移出事件,本代码可用于学习易语言的鼠标控制API事件-Easy language source code, the mouse moved out of the event, the code can be used to control the mouse easy language to learn API event
  3. 所属分类:钩子与API截获

    • 发布日期:2017-04-05
    • 文件大小:1430
    • 提供者:pkjapan
  1. MouseScreen

    0下载:
  2. 一个Hook鼠标单击事件来截图的程序,只要在ini里面设置了目标程序的标题或者类名,就可以使用本工具来Hook截图了,工具会将截图自动生成bmp文件在文件夹下-Hook the mouse click event to a screenshot of the program, as long as the target in the ini settings inside the program title or category name, you can use this tool to H
  3. 所属分类:Hook api

    • 发布日期:2017-04-04
    • 文件大小:38919
    • 提供者:吴瑶
  1. Win_HOOK

    0下载:
  2. Windows系统采用的是事件驱动的机制,也就是说,整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子可以监控系统或进程中的各种事件消息,截获发往目标窗口的消息并进行处理。我们可以在系统中安装自定义的钩子,监视系统中特定时间的发生,完成特定的功能。比如截获键盘、鼠标的输入、屏幕取词、日志监视等等。可见、利用钩子可以实现许多特殊而有用的功能。因此,对于高级编程人员来说,掌握钩子的编程方法
  3. 所属分类:Hook api

    • 发布日期:2017-04-01
    • 文件大小:10375
    • 提供者:宋若军
  1. HookTest

    0下载:
  2. 界面程序测试hook dll 截获键盘鼠标事件 F2退出hook-Intercept test program interface hook dll hook keyboard and mouse out event F2
  3. 所属分类:Hook api

    • 发布日期:2017-04-08
    • 文件大小:69517
    • 提供者:dai ting
  1. lainline_log

    0下载:
  2. autoit v3 制作 lainline 界面事件记录工具 记录以下事件 :1窗体创建 2消减窗体 3鼠标左击 4鼠标右击 5鼠标双击 6键盘事件 7鼠标拖动 8滚轮上滚 9滚轮下滚 10滚轮按下 截图 11鼠标图标改变 12窗体焦点变化 网页格式保存 版本信息 多语言支持 回放 13窗口显示 14窗口隐藏 15控件焦点变化-autoit v3 interface, event logging tools ma
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:818068
    • 提供者:lainline
  1. hooks

    0下载:
  2. 鼠标钩子和键盘事件,获取系统键盘鼠标API,便于对操作系统的键盘鼠标进行操作-Mouse hook and keyboard eventMouse hook and keyboard eventMouse hook and keyboard event
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:129286
    • 提供者:east
  1. kyms

    0下载:
  2. 获取鼠标和键盘事件记录(键盘按键、鼠标滑动,左右键,滚轮),存入文件,vs2008通过-get mouse and keyboard event and write to a text
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:921
    • 提供者:cs
  1. mouse-event

    0下载:
  2. Emulating mouse event (clciks, movement x,y )using Windows API. Codes tested and working.
  3. 所属分类:Hook api

    • 发布日期:2017-04-10
    • 文件大小:1125
    • 提供者:Innocent
  1. keybd_event

    0下载:
  2. 这是一个关于在Windows下鼠标事件功能介绍的资料,通过它可以了解鼠标事件的机制,可以做个钩子程序等-This is one of the Windows mouse event features information, through it can understand the mouse event mechanism, can make a hook procedure
  3. 所属分类:Hook api

    • 发布日期:2017-11-19
    • 文件大小:7803
    • 提供者:刘建华
  1. Spy_Idle

    0下载:
  2. 实现监控我们的操作系统是否处于空闲状态,这里主要是在一定的时间内是否有鼠标或键盘事件发生,如果没有就判定为空闲状态-Monitor and control our operating system is in an idle state, here in a certain period of time whether there is a mouse or keyboard event occurs, if not determined to be idle
  3. 所属分类:Hook api

    • 发布日期:2017-04-05
    • 文件大小:217864
    • 提供者:喻旭
  1. MouseHook

    0下载:
  2. 鼠标Hook监听事件源码,一个很实用的实例,希望对大家有帮助。-Mouse Hook monitor the event source, a very practical example, we hope to help.
  3. 所属分类:Hook api

    • 发布日期:2017-04-06
    • 文件大小:3966
    • 提供者:River
« 12 »
搜珍网 www.dssz.com