搜索资源列表
GetWord_DLL
- 利用钩子取得屏幕上的字,其中包括金山词霸翻译小帖榜上的字符。-hook made use of the words on the screen, including free email translation small brief list of the characters.
APIHook_Gid32
- 这个是用鼠标进行屏幕取词的delphi源码,对金山词霸取词感兴趣的可以下载研究一下-this is the mouse for the Capture Characters from Screen delphi source, free email from the word interesting study can be downloaded
SnatchText
- 该程序可以攫取金山词霸的编辑窗口的文本。-the procedure can grab Kingsoft the text edit window.
getScreenWords
- 进行屏幕取词的程序,就像金山词霸那样,我用过了,很好用-Capture Characters from Screen for the procedures, like Kingsoft, I spent a good use
catchWord
- delphi实现的屏幕抓词软件,类似金山词霸的功能,只是一个demo,需要大家完善
getwordnt
- 一个类似于金山词霸的屏幕取词小程序
Kingsoft-Hook
- 金山词霸的屏幕取词技术,利用了 DLL编程,非常值得学习。-the screen get word technology of kingsoft powerword,use dll program, it s worthy of study
WordToIE.rar
- 屏幕取词,利用金山词霸中的动态库实现,解决卡巴斯基冲突的问题,附动态库,使用说明。,Screen using PowerWord dynamic library to resolve the issue of conflict Kaspersky, with the dynamic database, for use.
TestMouseHook
- 在VC下类似金山词霸屏幕取词功能的鼠标钩子-Mouse hook in capturing function of the VC.
hookyou
- 特别说明:本程序目的是更改其他程序窗口的显示内容(如数值)。用枚举主窗口和子窗口的方法只能找到有句柄的控件,发消息进行更改。对无句柄的控件就无能为力了,在spy++里都无法枚举Delphi/BCB/VB的label控件的只能采用截获TextOut的方法了,没想到其他更好的办法:-)这种就是所谓的屏幕取词技术了,金山词霸用的就是这种方法。-Special Note: This procedure aims to change the window display of other content
pmqc
- 实现类似金山词霸屏幕取词的delphi代码-dephi screen getword
MouseHook
- 简单的鼠标钩子例子,可显示鼠标所在窗口的标题!模拟金山词霸取词功能,包括一个系统钩子DLL和调用程序!-A simple mouse hook example, where the window can display the title of the mouse! Simulation PowerWord check word features, including a system hook DLL and call the procedure!
WordEditionHook
- 本程序为测试版,实现软件“谷歌金山词霸合作版”的鼠标屏蔽,并同时提供相关窗口句柄以及该软件编辑框用户输入内容(通过弹出对话框)-This procedure is a demo of “Google co-operation PowerWord Edition”.It provides mouse shield, and at the same time provide some window handles as well as the edit contents whiech the us
ApiHook
- 金山词霸的屏幕取词使用了HOOKWindows API的调用来实现的,这里的是一个用数组实现对函数的HOOK的管理功能C源码-PowerWord using the Screen HOOKWindows API call to achieve, and here is a realization of the function with an array of management functions of the HOOK source C
ScrGetWord_BCB
- 使用C++Builder6编写的取鼠标位置的单词,就像金山词霸等翻译软件一样,已调试通过。-The use of C++ Builder6 prepared to take the mouse location of the word, such as Kingsoft translation software, has been debugging through.
14160Heer
- 屏幕取词,由鼠标位置取得文字。类似金山词霸的取词功能-Capture Characters from Screen, from the mouse location to obtain text. Kingsoft to take a similar word function
Win_HOOK
- Windows系统采用的是事件驱动的机制,也就是说,整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子可以监控系统或进程中的各种事件消息,截获发往目标窗口的消息并进行处理。我们可以在系统中安装自定义的钩子,监视系统中特定时间的发生,完成特定的功能。比如截获键盘、鼠标的输入、屏幕取词、日志监视等等。可见、利用钩子可以实现许多特殊而有用的功能。因此,对于高级编程人员来说,掌握钩子的编程方法
APIH00k
- API钩子系统一般框架 通常,我们把拦截API的调用的这个过程称为是安装一个API钩子(API Hook)。一个API钩子基本是由两个模块组成:一个是钩子服务器(Hook Server)模块,一般为EXE的形式;一个是钩子驱动器(Hook Driver)模块,一般为DLL的形式。 钩子服务器主要负责向目标进程注入钩子驱动器,使得钩子驱动器运行在目标进程的地址空间中,这是关键的第一步,而钩子驱动器则负责实际的API拦截处理工作,以便在我们所关心的API函数调用的之前或之后能做一些我们