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

Search list

[Windows DevelopWindows NT2000 32位取词

Description: Windows NT2000 32位取词 delphi,利用鼠标钩子和winapi实现屏幕取词功能,无解压密码-Windows NT2000 32 capture word, delphi,with the help of mouse hook and winapi,this program can capture screen word.whithout unzip password.
Platform: | Size: 200704 | Author: ywj | Hits:

[GUI DevelopWinCrea

Description: 完全使用winAPI函数完成一个简单窗口的绘制,包括滚动条.是vc6入门的必修程序-use winAPI function fully complete a simple window mapping, including scroll. Yes vc6 entry procedures for the compulsory
Platform: | Size: 21504 | Author: 訾国伟 | Hits:

[Windows Developwin final

Description: 文本编辑器(2),自建消息机制,不同于MFC和WINAPI,是上次上传的继续-text editor (2), relying on information mechanism is different from MFC and WINAPI is uploaded to the last
Platform: | Size: 83968 | Author: 蔡邑川 | Hits:

[Other检查软驱

Description: 一个检查软驱中是否有软盘的VFP的函数,使用了WinAPI-a check whether there are floppy diskette the VFP functions, use the WinAPI
Platform: | Size: 1024 | Author: lhp | Hits:

[Com Portwin2k下直接用API函数编写串口通讯例程(VC6)

Description: win2k下直接用API函数编写串口通讯例程(VC6).RAR。 直接用WINAPI编写的串口通讯例程。-win2k directly with the preparation of API routines Serial Communication (VC6). RAR. Direct WINAPI prepared by the serial communication routines.
Platform: | Size: 69632 | Author: kugui_guo | Hits:

[VC/MFCwinapi-cn

Description: The document for windows API!-API for windows!
Platform: | Size: 761856 | Author: | Hits:

[OtherWinAPIPicture

Description: 使用WinAPI函数直接写的一个画图板的小程序,为了方便上传,我把它放在了word文档里-function directly using WinAPI write a small drawing board procedures, in order to facilitate upload, I put it in a word document Lane
Platform: | Size: 18432 | Author: henry | Hits:

[Windows DevelopListView&ListControl

Description: 这个例子使用公用控制回调在一个CListView中管理CListCtrl控制,这个例子用于分析了一些以逗号为分割符的文本文件,例如在你的MSDEVLIB(VC.在DevStudioVCLib)目录下的WinApi.CSV就是这样的文件-examples of the use of the common control of a pullback in CListCtrl CListView management control, for example the analysis of a number of a comma to separate address in a text file, for example, in your MSDEVLIB (VC. in DevStudioVCLib) Contents of WinApi.CSV This is a document
Platform: | Size: 25600 | Author: lijia | Hits:

[OtherCodes20060421

Description: mpst_proj.rar VC++开发的Media Player插件,能够在媒体播放完后自动关机,OnscreenKeyboard_src.zip 在屏幕上显示一个键盘图形,并能显示键盘敲击动作的程序。MatlabEng_src.zip 一个Matlab接口API,可在C++中调用该API来控制Matlab.XMineSweeper_src.zip 微软公司扫雷程序源码.MikesScreenSaver_src.zip 一个使用WinAPI编写的屏幕保护程序.WinMgr_demo.zip 一个启动/关闭/激活屏保程序,并有启动管理功能的程序源码.ForTheKids_src.zip 防止小孩乱敲键盘和鼠标的一个小程序.-mpst_proj.rar VC Media Player plug-in, in broadcast media after the automatic shutdown, OnscreenKeyboard_src.zip displayed on the screen a graphic keyboard, and can show that the tap of a keyboard action procedures. MatlabEng_src.zip a Matlab interface API, in a call to the C API to control Matlab.XMineSweeper_src.zip Microsoft clearance procedures source. MikesScreenSaver_src.zip a W inAPI prepared by the screen saver. WinMgr_demo.zip a power up/down/activation screensaver procedures, and start the process management capabilities source. ForTheKids_src.zip knowledge is to prevent children chaos the mouse and a small program.
Platform: | Size: 366592 | Author: nbchen | Hits:

[OS programenumproWin32

Description: 我们在编写程序时,常常遇到的一件事情就是要准确列出系统中所有正在运行的程序或者进程。Windows 任务管理器就是这样的一个程序。它既能列出运行的桌面应用程序,又能列出系统中所有运行的进程。那么,我们在程序中如何实现这样的任务,该程序实现此功能 关于代码   本文附带的代码例子将 PSAPI 和 ToolHelp32 封装到一个名为 EnumProcs() 的函数中。该函数的工作原理类似 EnumWindows(),有一个指向回调函数的指针,并要对该函数进行重复调用,针对系统中的每个进程调用一次。另一个参数是用户定义的 lParam。下面是该函数的声明:BOOL WINAPI EnumProcs( PROCENUMPROC lpProc, LPARAM lParam ) 使用该函数时,要象下面这样声明回调函数: BOOL CALLBACK Proc( DWORD dw, WORD w16, LPCSTR lpstr, LPARAM lParam )   参数 dw 包含 ID,“w16”是16位任务的任务号,如果为32位进程则为0(在 Windows 95 中总是0),参数lpstr 指向文件名,lParam 是用户定义的,要被传入 EnumProcs()。   EnumProcs() 函数通过显示链接使用 ToolHelp32 和 PSAPI,而非通常所用的隐式链接。之所以要这样做,主要是为了让代码能够在二进制一级兼容,从可以在所有 Win32 操作系统平台上运行。 -us in the preparation of procedures, often encountered one thing is to accurately list all systems are running program or process. Windows Task Manager is one such procedure. It not only sets out the running desktop applications, the system can list all the running processes. Then we process of how to achieve this task, the program code for this function is incidental to the code examples and ToolHelp32 PSAPI Packaging entitled to a EnumProcs () function. This function is similar to the principle EnumWindows (), is a pointer to a callback function pointers and to repeat this function call against each of the system called a process. Another parameter is the user-defined lParam. Below is the function of the statement : BOOL WINAPI EnumProcs (PROCENUMPROC lpProc. LPARAM lParam) to use this f
Platform: | Size: 3072 | Author: wwwwppp | Hits:

[ADO-ODBCAdoRecordset

Description: 使用ADO方式操作数据库,封装的winapi-use ADO methods database package winapi
Platform: | Size: 8192 | Author: wuyanqi | Hits:

[Delphi/CppBuilderwinapi32hssm

Description: 很经典的WinAPI 帮助教程,对提高编程人员的编程水平或增强代码的优化度有很大的帮助!-classic WinAPI the help and guidance to improve the programming level, or enhanced programming code optimization for a great help!
Platform: | Size: 354304 | Author: wk | Hits:

[Windows DevelopAPIWinSock

Description: 一个用WinAPI编写的Socket聊天程序,可以用来看到Windows通信的底层。-a prepared using WinAPI Socket chat program, Windows can be used to see the bottom of communication.
Platform: | Size: 71680 | Author: 刘铁 | Hits:

[Windows DevelopWinApiWindows

Description: 用Winapi创建Windows窗口。比MFC要快的多。-Winapi used to create Windows window. MFC faster than more.
Platform: | Size: 7168 | Author: 刘铁 | Hits:

[Windows DevelopFillSample

Description: 利用Winapi与数学方法对屏幕中特定区域进剪切和填补。-use Winapi and mathematical methods to screen into specific regional shear and fill.
Platform: | Size: 37888 | Author: 刘铁 | Hits:

[Windows DevelopLineSample

Description: 利用WinApi来绘制直线与曲线f(x)=A*sin(wx+b)-use WinApi to draw straight lines and curves of f (x) = A* sin (wx b)
Platform: | Size: 45056 | Author: 刘铁 | Hits:

[Windows DevelopRegionArea

Description: 两个利用WinApi来绘制区域覆盖的实例,可以用在图形学的着色上。-two WinApi use to draw regional coverage examples can be used in graphics rendering on.
Platform: | Size: 72704 | Author: 刘铁 | Hits:

[Windows DevelopKeyboardMessage

Description: Winapi编写的Windows消息跟踪的程序,消息跟踪就是VC++里的SPY++一样。-Winapi prepared by the Windows Message tracking procedures, tracking information is SPY VC's the same.
Platform: | Size: 37888 | Author: 刘铁 | Hits:

[Mathimatics-Numerical algorithmsVisual24

Description: 一个24点算法,用WINAPI写的窗口界面,比较老土,但可供学习交流使用-a 24 point algorithm, written by the WINAPI window interface, the more gentle, but they can study the use of exchange
Platform: | Size: 1212416 | Author: 哈哈 | Hits:

[Other GamesWinAPI_Snake

Description: 本程序是用纯API函数写得一个小的贪食蛇游戏,可供初学者学习用-this program is written in pure API function of a small Tanshichi game for beginners to learn from
Platform: | Size: 45056 | Author: JELL | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 25 »

CodeBus www.codebus.net