资源列表
二分查找
- 二份查找。本软件在数据查找中是非常实用的软件。原代码是C语言的运行环境-search. The search software in the data is very useful software. The original C language code is the runtime environment
数据库连接
- 本原代码是基于C语言的原程序。是用于一般的数据库的连接-primitive code is based on the C language of the original procedure. For general is the database connection
排雷
- 本原代码是基于C语言的原程序。是经典中的小游戏。-primitive code is based on the C language of the original procedure. Classic is a small game.
SQL的实现
- 本原代码是基于C语言的原程序。是用 C语言实现的SQL语言-primitive code is based on the C language of the original procedure. C is the language of SQL language
ATM提款机程序
- 一个好的java程序,保证新鲜,能够实现java的网络功能,数据库功能-a good java procedures to ensure that fresh, can be achieved java networking, database functions
listkill
- 一个VB编写出的进程管理工具,类似与windows的进程消息管理器。还可以,请大家指点.-VB prepare a process management tools, and similar windows process information manager. Also, please guidance.
夜猫文章管理系统免费版)
- mArticleFree Version 2.0 (夜猫文章管理系统免费版) ymArticle 功能列表: 1. 可支持用户组功能, 可按不同用户组设定各类权限 2. 支持JS调用某类别或所有类别的最新/最热门文章 3. 支持手工分页, 分页只需在文章中插入 [page] 代码 4. 支持搜索功能 4. 支持相关文章功能 5. 后台WEB管理 6. 可统计今日浏览和总浏览数 7. 支持BB代码, HTML 8. 更多功能无法一一列出... -mArticleFree Version 2.0 (
windows functions api
- Windows API函数大全 作者 不详 关键字 Windows API函数大全 原作者姓名 不详 介绍 简要的Windows API函数大全-Windows API function Daquan author unknown keyword Windows API function Daquan original author unnamed briefly introduced the Windows API function Daquan
VC计算器
- 一个计算器程序 能够执行计算器的普通功能-a calculator program to implement the general function calculator
StressMark压力测试程序
- 简介 StressMark测试软件是一个使用Visual C++编写的,开放源代码的测试工具,可以完成服务程序及重要算法的功能和性能测试,其最主要的功能是模拟多线程或多客户端的自动化压力测试。 我们可以利用StressMark软件完成的典型测试任务包括: 1. 在多线程环境下测试一个软件模块、一段关键算法是否可以正确运行,即代码是否是多线程安全的。 2. 测试一个软件模块、一-brief StressMark test software is a Visual C prepared in the
TerminateProcess
- program TerminateProcess {$APPTYPE CONSOLE} uses SysUtils, Windows var ProcessHwnd, WindowHwnd: THandle ProcessID: DWORD begin //得到记事本的主窗口句柄 WindowHwnd := FindWindow( Notepad , nil) if not isWindow(WindowHwnd) then ExitProcess(0) //得到记事本的进程标识 GetWind
VirtualMemory
- program VirtualMemory {$APPTYPE CONSOLE} uses SysUtils, Windows const PageSize = 4096 //定义页面大小 var VmAddress, CommitAddress: Pointer //存放虚拟内存基址 Text: Pchar begin //保留二页虚拟内存 VmAddress := VirtualAlloc(nil, PageSize * 2, MEM_RESERVE, PAGE_READWRITE) if