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

Search list

[Hook apivbkeyHook

Description: 这是一个使用SetWindowsHookEx的程序,屏蔽了键盘按键(包括系统按键)。 如果只想屏蔽某个按键,请更改下面的代码。-SetWindowsHookEx use of the procedure, shielding the keyboard keys (including the system keys). If you only wish to shield a button, please change the code below.
Platform: | Size: 49637 | Author: 张龙 | Hits:

[Button controlVB111

Description: 这是一个使用SetWindowsHookEx的程序,屏蔽了键盘按键(包括系统按键)。 如果只想屏蔽某个按键,请更改下面的代码。 Form1.Text1 = wParam Form1.Label1 = kk.vkCode & \":\" & kk.scanCode & \":\" & kk.Time If wParam = 256 Then Myfunc = 1: Exit Function endif wParam 的按键值可以在程序运行中测试中找到。-SetWindowsHookEx use of the procedure, shielding the keyboard keys (including the system keys). If you only wish to shield a button, please change the code below. Form1.Text1 wParam = = kk.vkCode Form1.Label1
Platform: | Size: 49637 | Author: 刘郑 | Hits:

[Hook apiMouseKeyHook

Description: 消息钩子源码(SetWindowsHookEx)-拦截鼠标和键盘消息的示例程序
Platform: | Size: 47334 | Author: open | Hits:

[Hook apigetpubips

Description: 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行简单的网络地址空间设定。 还有一点就是 必须有自己的网络地址空间。:) 本程序运用到 SETTIMER HOOK REG 等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx Process32First SHGetFileInfo CreateProcess 等函数。
Platform: | Size: 18374 | Author: david | Hits:

[Hook apizjdQQ

Description: CFile CWinApp CString CloseHandle GetCurrentProcessId CallNextHookEx GetForegroundWindow SendMessage GetAsyncKeyState ZeroMemory GetKeyNameText SetWindowsHookEx UnhookWindowsHookEx EnumWindowsProc GetProp EnumWindows LoadLibrary GetProcAddress ShowWindow CDialog CDataExchange CWnd DestroyIcon LoadIcon SetProp GetSystemMenu CMenu LoadString AppendMenu CFileFind CreateFile IsIconic CPaintDC GetSystemMetrics CRect GetClientRect DrawIcon GetModuleFileName RegOpenKey RegSetValueEx
Platform: | Size: 1428 | Author: gulin | Hits:

[OS programgetpubips

Description: 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行简单的网络地址空间设定。 还有一点就是 必须有自己的网络地址空间。:) 本程序运用到 SETTIMER HOOK REG 等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx Process32First SHGetFileInfo CreateProcess 等函数。
Platform: | Size: 17033 | Author: 金川 | Hits:

[Hook apihook

Description: 挂钩(HOOK)的基本原理 WINDOWS调用挂接的回调函数时首先会调用位于函数链首的函数,我们只要将自己的回调函数置于链首,该回调函数就会首先被调用。那么如何将我们自己的回调函数置于函数链的链首呢?函数SetWindowsHookEx()实现的就是该功能。
Platform: | Size: 20103 | Author: 冰雨 | Hits:

[OS programkeybhook_app

Description: 应用程序动态挂钩,本代码包含一个简单的键盘钩子的做法,简单明料,很快就帮你手把手的做一个键盘钩子文件。主要函数setwindowshookex,callnexthookex
Platform: | Size: 612809 | Author: lu | Hits:

[Other resourceWinCEKBHook_src

Description: 如何在wince下使用键盘hook,因为wince不支持SetWindowsHookEx函数
Platform: | Size: 2562 | Author: 张炜 | Hits:

[Hook apicatwork0601

Description: 1、我想调用 SetWindowsHookEx 来设置 WH_CBT 钩子,但我了解到 MFC 也安装了这个钩子,也就是在一个线程中安装了两次 WH_CBT,这样做能行吗? 2、我正在将一个现有的 C++ 类库转换为托管扩展,以便能在 .NET 框架客户端使用它们。我的代码调用了 API 函数,这些函数需要当前运行模块的 HINSTANCE。我不想使用我的 DLL 的 HINSTANCE;我想让调用者提供 EXE 的 HINSTANCE,该 EXE 调用我的 DLL。我能将 HINSTANCE 声明为一个 IntPtr,但我的基于 .NET 的客户端如何让应用程序的 HINSTANCE 传递给我的函数?在 C# 中是如何做的? 3、我要如何将 MFC CString 转换为托管 C++ 中的 String?我有一个函数是这样的: int ErrMsg::ErrorMessage(CString& msg) const { msg.LoadString(m_nErrId) msg += _T("::Error") return -1 }   我如何用托管 C++ 重写这个函数,并用 String 替换参数中的 CString?我不知道如何声明参数,如何处理 const,以及如何从资源文件中加载托管 String。我看了文档说 String 是不能被修改的,因为它们是不可变的,但我有想修改传递的字符串。 -one, I would like to call to set up WH_CBT SetWindowsHookEx hook, but I also understand that MFC installation of the hook, which is in a thread installed two WH_CBT. do exercise? Two, I was one of the existing C libraries into custody expansion, in order to be able.NET framework of the client to use them. I called the code API function, these functions need to run the current module HINSTANCE. I do not want to use my HINSTANCE DLL; I want to call to provide the HINSTANCE EXE, I called the EXE DLL. I can HINSTANCE statement for a IntPtr. but I based.NET client applications how the HINSTANCE passed to the function? In C# and how is it done? Three, I want to redeem MFC how to care for the conversion of C String? I have a function like this : int ErrMsg : : ErrorMessage (redeem
Platform: | Size: 101376 | Author: 阳广元 | Hits:

[Windows Developdebugsrc

Description:
Platform: | Size: 561152 | Author: toke | Hits:

[Hook apihookdll3

Description: 一个服务端钩子程序的示例 含有修改send地址等等外挂技术-A service-side hook procedure address send sample containing modified plug-in technology, etc.
Platform: | Size: 7091200 | Author: 站长办公区 | Hits:

[OS programgetpubips

Description: 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行简单的网络地址空间设定。 还有一点就是 必须有自己的网络地址空间。:) 本程序运用到 SETTIMER HOOK REG 等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx Process32First SHGetFileInfo CreateProcess 等函数。
Platform: | Size: 16384 | Author: 金川 | Hits:

[Hook apiAPIHook_Using_IAT

Description: 使用系统IAT表查找要Hook的函数地址,然后进行挂钩。本代码Hook的是TextOut函数。-IAT table to find using the system to Hook a function of address, and then proceed to link. Hook this code is the TextOut function.
Platform: | Size: 37888 | Author: 骆爽 | Hits:

[CSharpSystemHooks

Description: C# 系统级Hook,调用系统system hook-C# System-level Hook, call the system hook system
Platform: | Size: 154624 | Author: zf | Hits:

[Windows DevelopDNSGetPubIPs

Description: 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行简单的网络地址空间设定。 还有一点就是 必须有自己的网络地址空间。:) 本程序运用到 SETTIMER HOOK REG 等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx Process32First SHGetFileInfo CreateProcess 等函数。-This procedure can automatically obtain the public network and then upload it to a specific IP address space on the network, and support and the local IP changes in synchronization to update the data uploaded to the IP address space, boot automatically run, global shortcuts. This procedure is to adapt to dynamic IP and Chinese production, if someone wants to set up servers on their own machines, but the IP is dynamic IP is also often changes, but the program can achieve IP dynamic binding, which give users the impression that static IP s感觉. This procedure will be run at their own to generate a page (containing the local IP), upload it to a specific network address space, when a user in the network to visit the new homepage on the web page will be automatically shifted to the local IP, all of this all procedures for auto-complete. Users need only a simple set of network address space. Another point is that it must have its own network address space. :) This procedure applied to SETTIMER
Platform: | Size: 33792 | Author: 高军 | Hits:

[Game Hook CrackVBHOOK

Description: VB钩子.用SetWindowsHookEx注册钩子. 实现了记录用户键盘输入。-VB hook. Registered with the SetWindowsHookEx hook. Achieved a record of the user keyboard input.
Platform: | Size: 2048 | Author: 莫晓辉 | Hits:

[Hook apiHook-registry-monitor

Description: DLL 动态库,主要 用Hook 对注册表的指定项 进行动态的监控,参数由自己输入,- extern "C" __declspec(dllexport) BOOL InstallHook(HWND handle) { hhook = ::SetWindowsHookEx(WH_SHELL, MyShellProc, GetModuleHandle("Hook.dll"), 0) hWnd = handle RegMonPID = GetCurrentProcessId() return hhook > 0 }
Platform: | Size: 87040 | Author: oracle | Hits:

[Hook apiGetPubIPs

Description: 本程序可以自动获取公网IP然后上传到指定网络地址空间上,而且支持和本机IP变动同步更新IP数据上传到地址空间,开机自动运行,全局快捷键。 本程序是适应中国动态IP而制作,假如有人想在自己机器上架设服务器,但IP是动态的 也就是IP会经常变动,但本程序可以实现IP动态绑定,从而给用户感觉是静态IP的感觉。 本程序在运行中会自己生成一个网页(包含本机IP),上传到指定的网络地址空间,当用户在网络上浏览该网页 该网页会自动转向到本机IP,这一切的一切都是程序自动完成。用户只需要进行简单的网络地址空间设定。 还有一点就是 必须有自己的网络地址空间。:) 本程序运用到 SETTIMER HOOK REG 等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx Process32First SHGetFileInfo CreateProcess 等函数。 -The program can automatically obtain the public network and then uploaded to the specified network IP address space, but also support and synchronized changes in the local IP data uploaded to the IP address space, to start automatically, the global shortcut keys. This procedure is to adapt to the dynamic IP that is made in China, if someone wants to set up servers on their machine, but the IP is dynamic, that is, IP will change frequently, but the program can be IP dynamic binding, giving the impression that the static IP of the user feeling. The program is running on their own to generate a page (containing the local IP), uploaded to the specified network address space on the network when users visit the page that page will automatically turn to the local IP, that everything is automatically completed. Users need only a simple set of network address space. Another point that must have its own network address space. :) This procedure applied to the SETTIMER HOOK REG and
Platform: | Size: 16384 | Author: 峰回路转 | Hits:

[Hook apikbh

Description: 键盘鼠标钩子,利用SetWindowsHookEx对线程的键盘鼠标消息转移到指定的窗口处理-Keyboard and mouse hook using SetWindowsHookEx keyboard and mouse messages on the thread moved to the specified window handle
Platform: | Size: 3072 | Author: swent | Hits:
« 1 23 »

CodeBus www.codebus.net