搜索资源列表
KnightOnLine
- KnightOnLine Private 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) Private Declare Function SetCursorPos Lib \"u
WinceKeyHookSource
- 1.小弟初学EVC,因之前都没学过C++、VC,所以写的比较简单。在此要谢谢驱动开发网的zhoumc 大哥,谢谢他多日来给我耐心的帮助! 2.工程kbhook是放HHOOK处理程序的DLL,winceKBhook是一个对话框程序,用来调用具体的应用程序。 3.因本人目前手上开发板上还没有键盘,所以在对话框上装了个按钮,用keybd_event来发送键盘消息。钩子安装成功之后可多次调用应用程序,但前后两次调用之间要有点时
pingmuruanjianpan
- 屏幕软键盘 -screen soft keyboard s creen soft keyboard screen soft keyboard
CopyScreenXY
- 抓屏程序,模拟了PrintScreen 和Alt+PrintScreen功能,以及按照坐标抓屏!-Screen procedures, Simulation of the PrintScreen and Alt+ PrintScreen function, as well as coordinate Screen!
KnightOnLine
- KnightOnLine Private 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) Private Declare Function SetCursorPos Lib "user
WinceKeyHookSource
- 1.小弟初学EVC,因之前都没学过C++、VC,所以写的比较简单。在此要谢谢驱动开发网的zhoumc 大哥,谢谢他多日来给我耐心的帮助! 2.工程kbhook是放HHOOK处理程序的DLL,winceKBhook是一个对话框程序,用来调用具体的应用程序。 3.因本人目前手上开发板上还没有键盘,所以在对话框上装了个按钮,用keybd_event来发送键盘消息。钩子安装成功之后可多次调用应用程序,但前后两次调用之间要有点时
WindowProc
- 窗口处理程序的源码,里面包含八个工程,对于初学windows编程的同学来说是很有用的-Window handle of the source program, which contains eight projects for the beginner students windows programming is very useful
Input
- 由于支付宝安全输入控件,如同其他众多安全控件方法一样,采用驱动方法劫持了IRP。这导致无法向其输入字符,传统的方法无论是发送WM_Char或者是WM_Keydown消息,还是Keybd_event和SendInput均对其无效。 笔者摸索出了通过直接读取$60,$64硬件端口来操作键盘,模拟输入的方法。 由于在Ring3下,由于Windows的保护机制,我无法直接操作硬件端口,所以我们需要构造一个驱动,或者使用著名的
code
- 循环 1,窗口置前 2,模拟TAB键(需要等待sleep) 3,模拟1键普通攻击 4,攻击等待(1000毫秒) //这里是上节课的模拟按键打怪的代码 HWND hwnd hwnd=::FindWindow(NULL,"Element Client") //窗口置前 ::ShowWindow(hwnd,SW_RESTORE) ::SetForegroundWind
Simulate
- 以 VC++为例来介绍一下如何实现程序来模拟键盘及鼠标的输入,这里主要是通过两个Windows API函数来实现这两个功能。模拟键盘用Keybd_event这个api函数,模拟鼠标按键用mouse_event函数。-VC++ example to introduce how to implement the program to simulate keyboard and mouse input, mainly through two
keypress
- * Parameters: * key : virtual keycode of the key to send. For printable * keys this simply the ANSI code (Ord(character)). * shift : state of the modifier keys. This is a set, so you * can set several of these ke
keybd_event
- 这是一个关于在Windows下鼠标事件功能介绍的资料,通过它可以了解鼠标事件的机制,可以做个钩子程序等-This is one of the Windows mouse event features information, through it can understand the mouse event mechanism, can make a hook procedure
keybd_event
- keybd_event用法 用keybd_event模拟键盘输入的实例。很实用。-The keybd_event use of keybd_event simulated keyboard input instance. Very practical.
KnightOnLine
- KnightOnLinePrivate 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)Private Declare Function SetCursorPos Lib user32 (ByVal
keybd_event
- keybd_event用法 用keybd_event模拟键盘输入的实例。很实用。-The keybd_event use of keybd_event simulated keyboard input instance. Very practical.
testkeypost
- WINCE C# CODE TO LEARN USAGE OF PostKeybdMessage AND KEYBD_EVENT
VB鼠标按键精灵
- VB鼠标按键精灵(VB模拟出的按键精灵大部分功能)(Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long) Private Declare Sub mouse_event Lib "user3