Welcome![Sign In][Sign Up]
Location:
Search - keybd_event

Search list

[Game Hook CrackKnightOnLine

Description: 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 \"user32\" (ByVal X As Long, ByVal Y As Long) As Long Private Declare Sub Sleep Lib \"kernel32\" (ByVal dwMilliseconds As Long) Private Declare Sub keybd_event Lib \"user32\" (ByVal bVk As Byte, ByVal Scan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Platform: | Size: 2985 | Author: 姜成刚 | Hits:

[Other resourceWinceKeyHookSource

Description: 1.小弟初学EVC,因之前都没学过C++、VC,所以写的比较简单。在此要谢谢驱动开发网的zhoumc 大哥,谢谢他多日来给我耐心的帮助! 2.工程kbhook是放HHOOK处理程序的DLL,winceKBhook是一个对话框程序,用来调用具体的应用程序。 3.因本人目前手上开发板上还没有键盘,所以在对话框上装了个按钮,用keybd_event来发送键盘消息。钩子安装成功之后可多次调用应用程序,但前后两次调用之间要有点时间间隔,大约5秒种,且要把应用程序关掉之后才可继续调用。 4.如有发现程序中有错误,或有更好的方法来实现调用具体的应用程序,欢迎来信告之小弟一声!我的邮箱saint_bxg@126.com。谢谢!
Platform: | Size: 7266 | Author: lzy | Hits:

[GUI Developpingmuruanjianpan

Description: 屏幕软键盘 -screen soft keyboard s creen soft keyboard screen soft keyboard
Platform: | Size: 3558400 | Author: yegg | Hits:

[GDI-BitmapCopyScreenXY

Description: 抓屏程序,模拟了PrintScreen 和Alt+PrintScreen功能,以及按照坐标抓屏!-Screen procedures, Simulation of the PrintScreen and Alt+ PrintScreen function, as well as coordinate Screen!
Platform: | Size: 29696 | Author: 卢青波 | Hits:

[Game Hook CrackKnightOnLine

Description: 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 "user32" (ByVal X As Long, ByVal Y As Long) As Long Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal Scan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Platform: | Size: 3072 | Author: 姜成刚 | Hits:

[Windows CEWinceKeyHookSource

Description: 1.小弟初学EVC,因之前都没学过C++、VC,所以写的比较简单。在此要谢谢驱动开发网的zhoumc 大哥,谢谢他多日来给我耐心的帮助! 2.工程kbhook是放HHOOK处理程序的DLL,winceKBhook是一个对话框程序,用来调用具体的应用程序。 3.因本人目前手上开发板上还没有键盘,所以在对话框上装了个按钮,用keybd_event来发送键盘消息。钩子安装成功之后可多次调用应用程序,但前后两次调用之间要有点时间间隔,大约5秒种,且要把应用程序关掉之后才可继续调用。 4.如有发现程序中有错误,或有更好的方法来实现调用具体的应用程序,欢迎来信告之小弟一声!我的邮箱saint_bxg@126.com。谢谢!
Platform: | Size: 7168 | Author: lzy | Hits:

[Windows DevelopWindowProc

Description: 窗口处理程序的源码,里面包含八个工程,对于初学windows编程的同学来说是很有用的-Window handle of the source program, which contains eight projects for the beginner students windows programming is very useful
Platform: | Size: 98304 | Author: ChenNan | Hits:

[Delphi VCLInput

Description: 由于支付宝安全输入控件,如同其他众多安全控件方法一样,采用驱动方法劫持了IRP。这导致无法向其输入字符,传统的方法无论是发送WM_Char或者是WM_Keydown消息,还是Keybd_event和SendInput均对其无效。 笔者摸索出了通过直接读取$60,$64硬件端口来操作键盘,模拟输入的方法。 由于在Ring3下,由于Windows的保护机制,我无法直接操作硬件端口,所以我们需要构造一个驱动,或者使用著名的WinIo库。 这里给出我封装好的使用WinIo库进行模拟击键输入的代码,此段代码只在PS/2下测试通过,未在USB情况下测试。本代码主要封装了ASCII码或字符与键盘扫描码之间转换。 -Email security as a result of input controls, as many other methods of security control as a hostage-driven approach adopted IRP. This has led not to enter characters, both traditional methods WM_Char or send WM_Keydown news, or Keybd_event and its SendInput are null and void. I explored through direct read $ 60, $ 64 hardware keyboard ports, analog input methods. Ring3 because, as the Windows of the protection mechanism, I can not directly operate the hardware port, so we need to construct a drive, or the use of well-known WinIo library. Given a good package here, I use the keyboard to simulate the Treasury WinIo enter the code, This code only in the PS/2 under the test is passed, no test in the USB case. The main package of the code of the ASCII code or character and switch between the keyboard scan code.
Platform: | Size: 19456 | Author: 冰剑 | Hits:

[Game Hook Crackcode

Description: 循环 1,窗口置前 2,模拟TAB键(需要等待sleep) 3,模拟1键普通攻击 4,攻击等待(1000毫秒) //这里是上节课的模拟按键打怪的代码 HWND hwnd hwnd=::FindWindow(NULL,"Element Client") //窗口置前 ::ShowWindow(hwnd,SW_RESTORE) ::SetForegroundWindow(hwnd) //模拟1这个按键。 keybd_event(49,0,WM_KEYDOWN,0) //按下1 keybd_event(49,0,WM_KEYUP,0) 这里需要将WM_KEYUP事件改成KEYEVENTF_KEYUP事件-Cycle 1, windows home before 2, analog TAB key (need to wait for sleep) 3, simulate an attack on four key general attack wait (1000 milliseconds)// This is the analog buttons on the lesson Daguai code HWND hwnd hwnd =:: FindWindow (NULL, " Element Client" ) // set the window before the:: ShowWindow (hwnd, SW_RESTORE) :: SetForegroundWindow (hwnd) // simulate one of this key. keybd_event (49,0, WM_KEYDOWN, 0) // pressed 1 keybd_event (49,0, WM_KEYUP, 0) here WM_KEYUP event needs to be replaced by KEYEVENTF_KEYUP Event
Platform: | Size: 1872896 | Author: jeffchang | Hits:

[OtherSimulate

Description: 以 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 Windows API functions to achieve these two functions. Simulation keyboard with Keybd_event the this api function to simulate the mouse button mouse_event function.
Platform: | Size: 22528 | Author: Ronald | Hits:

[Hook apikeypress

Description: * 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 keys (shift, control, alt, * mouse buttons) in tandem. The TShiftState type is * declared in the Classes Unit. * specialkey: normally this should be False. Set it to True to * specify a key on the numeric keypad, for example. * Description: * Uses keybd_event to manufacture a series of key events matching * the passed parameters. The events go to the control with focus. * Note that for characters key is always the upper-case version of * the character. Sending without any modifier keys will result in * a lower-case character, sending it with [ssShift] will result * in an upper-case character!-* Parameters: * key : virtual keycode of the key to send. For printable * keys this is simply the ANSI code (Ord(character)). * shift : state of the modifier keys. This is a set, so you * can set several of these keys (shift, control, alt, * mouse buttons) in tandem. The TShiftState type is * declared in the Classes Unit. * specialkey: normally this should be False. Set it to True to * specify a key on the numeric keypad, for example. * Description: * Uses keybd_event to manufacture a series of key events matching * the passed parameters. The events go to the control with focus. * Note that for characters key is always the upper-case version of * the character. Sending without any modifier keys will result in * a lower-case character, sending it with [ssShift] will result * in an upper-case character!
Platform: | Size: 9216 | Author: emoticon | Hits:

[Hook apikeybd_event

Description: 这是一个关于在Windows下鼠标事件功能介绍的资料,通过它可以了解鼠标事件的机制,可以做个钩子程序等-This is one of the Windows mouse event features information, through it can understand the mouse event mechanism, can make a hook procedure
Platform: | Size: 8192 | Author: 刘建华 | Hits:

[Otherkeybd_event

Description: keybd_event用法 用keybd_event模拟键盘输入的实例。很实用。-The keybd_event use of keybd_event simulated keyboard input instance. Very practical.
Platform: | Size: 4096 | Author: 弋弋 | Hits:

[Game ProgramKnightOnLine

Description: 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 X As Long, ByVal Y As Long) As LongPrivate Declare Sub Sleep Lib kernel32 (ByVal dwMilliseconds As Long)Private Declare Sub keybd_event Lib user32 (ByVal bVk As Byte, ByVal Scan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)-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 X As Long, ByVal Y As Long) As LongPrivate Declare Sub Sleep Lib kernel32 (ByVal dwMilliseconds As Long)Private Declare Sub keybd_event Lib user32 (ByVal bVk As Byte, ByVal Scan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
Platform: | Size: 3072 | Author: fferent | Hits:

[Multimedia Developkeybd_event

Description: keybd_event用法 用keybd_event模拟键盘输入的实例。很实用。-The keybd_event use of keybd_event simulated keyboard input instance. Very practical.
Platform: | Size: 4096 | Author: jia65o452 | Hits:

[Windows CEtestkeypost

Description: WINCE C# CODE TO LEARN USAGE OF PostKeybdMessage AND KEYBD_EVENT
Platform: | Size: 38912 | Author: syamkrishnan | Hits:

[OtherVB鼠标按键精灵

Description: 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 "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Private Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long Private Declare Function GetDC Lib "user32" (ByVal Hwnd As Long) As Long Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal Hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long)
Platform: | Size: 93184 | Author: 大牛12345 | Hits:

CodeBus www.codebus.net