Welcome![Sign In][Sign Up]
Location:
Search - vc6.0.r

Search list

[IME DevelopMaximumSpeed

Description: Fixed a problem caused by VC6 Professional Edition optimizations. Basically, the program wouldn t work when \"Maximum Speed\" or \"Minimum Size\" options were enabled. The program uses #pragra statements to disable optimizations for the perceptron code.-Fixed a problem caused by VC6 Professional Edition optimizations. Basically, the program would not work when "Maximum Speed" o r "Minimum Size" options were enabled. The prog ram uses # pragra statements to disable optimiz ations for the perceptron code.
Platform: | Size: 39670 | Author: yeats yu | Hits:

[ELanguageLL(1)yufafenxi

Description: *--- --- --声明--- --- -----*/ /* VC6.0下运行通过 此程序为本人苦心所做,请您在阅读的时候,尊重本人的 劳动。可以修改,但当做的每一处矫正或改进时,请将改进 方案,及修改部分发给本人 (修改部分请注名明:修改字样) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 补充: 程序存在问题: (1) follow集不能处理:U->xVyVz的情况 (2) 因本人偷懒,本程序为加入文法判断,故 输入的文法必须为LL(1)文法 (3) 您可以帮忙扩充:消除左递归,提取公因子等函数 (4) …… */ /*-----------------------------------------------*/ /*参考书《计算机编译原理——编译程序构造实践》 LL(1)语法分析,例1: ERTWF# +*()i# 文法G[E]:(按此格式输入) 1 E -> TR 2 R -> +TR 3 R -> 4 T -> FW 5 W -> * FW 6 W -> 7 F -> (E) 8 F -> i 分析例句:i*(i)# , i+i# 例2: 编译书5.6例题1 SHMA# adbe# S->aH H->aMd H->d M->Ab M-> A->aM A->e 分析例句:aaabd# */
Platform: | Size: 5280 | Author: 林月忠 | Hits:

[Other resource布告栏

Description: 这是一个自己做的数据库的布告栏管理系统,可以实现一些简单的查询,添加,删除功能,代码已经在vc6.0下编译过,其中还包括设计文档,E-R图,和数据字典-own bulletin board database management system, can achieve some simple query, add, delete function, the code has been compiled under vc6.0, including design documents, E-R map, and data dictionary
Platform: | Size: 68130 | Author: 禾苗 | Hits:

[Data structsR树的源代码

Description: 关于rtree的完整源代码,通过vc6.0调试成功。
Platform: | Size: 1841365 | Author: chwei99@126.com | Hits:

[ICQ-IM-Chat控制台QQ 【VC6.0可编译版本 源码下载】myQQ

Description: 一个控制台面板下的QQ 简介:该程序由XiaoXia创作,www.xiaoxia.org ,前段时间不巧被我看到,不过没有VC版本,正好闲着,经过小小改动,可以在VC下运行了,服务我们这些对QQ有点兴趣的VC小菜~。 申明:本代码只供学习交流。 支持命令: help: 显示以下帮助信息. add/a: 添加好友. add+QQ号码. cls/clear: 清屏. view/v: 所有好(群)友列表.(指向前操作) who/w: 在线好(群)友列表.(指向前操作) qun/q: 显示群列表.(指向前操作) to/t: 指向某个QQ号或者前面的编号. enter/e: 指向某个群号或者前面的编号. leave/l: 离开群.(指向后操作) say/s: 发送信息.(指向后操作) info/i: 查看相应信息.(指向后操作) update/u: 更新所有列表. status: 改变状态(online|away|busy|killme|hidden) verify/r: 输入验证码(验证码在verify目录下). change/c: 更换用户登陆. exit/x: 退出.
Platform: | Size: 3635051 | Author: Simonz | Hits:

[SQL Server布告栏

Description: 这是一个自己做的数据库的布告栏管理系统,可以实现一些简单的查询,添加,删除功能,代码已经在vc6.0下编译过,其中还包括设计文档,E-R图,和数据字典-own bulletin board database management system, can achieve some simple query, add, delete function, the code has been compiled under vc6.0, including design documents, E-R map, and data dictionary
Platform: | Size: 67584 | Author: 禾苗 | Hits:

[Internet-NetworkHTTPProxy(Vc6.0)

Description: 用vc6.0开发的,利用Winsock实现的HTTP代理。功能很简单,就只能实现HTPP会话的转发。目前只考虑了Get命令的转发和处理,默认端口5050。-vc6.0 development with the use of Winsock HTTP proxy. Very simple function, it can only achieve HTPP conversation transponders. Currently only considered Get transponders and orders, the default port 5050.
Platform: | Size: 208896 | Author: 周雪强 | Hits:

[Dialog_WindowResourceDllCall

Description: 这是一个怎么样调试和调用一个DLL文件的例子。使用VC6。0集成开发环境下编译成功。-This is a debugging and how to call a DLL file example. Using VC6. 0 integrated development environment to compile successfully.
Platform: | Size: 1996800 | Author: 谢意 | Hits:

[ELanguageLL(1)yufafenxi

Description: *--- --- --声明--- --- -----*/ /* VC6.0下运行通过 此程序为本人苦心所做,请您在阅读的时候,尊重本人的 劳动。可以修改,但当做的每一处矫正或改进时,请将改进 方案,及修改部分发给本人 (修改部分请注名明:修改字样) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 补充: 程序存在问题: (1) follow集不能处理:U->xVyVz的情况 (2) 因本人偷懒,本程序为加入文法判断,故 输入的文法必须为LL(1)文法 (3) 您可以帮忙扩充:消除左递归,提取公因子等函数 (4) …… */ /*-----------------------------------------------*/ /*参考书《计算机编译原理——编译程序构造实践》 LL(1)语法分析,例1: ERTWF# +*()i# 文法G[E]:(按此格式输入) 1 E -> TR 2 R -> +TR 3 R -> 4 T -> FW 5 W -> * FW 6 W -> 7 F -> (E) 8 F -> i 分析例句:i*(i)# , i+i# 例2: 编译书5.6例题1 SHMA# adbe# S->aH H->aMd H->d M->Ab M-> A->aM A->e 分析例句:aaabd# */-err
Platform: | Size: 5120 | Author: | Hits:

[Internet-NetworkUDTC_S

Description: 使用UDP模拟可靠传输协议rdt2.0。使用两个程序,一个发送一个接收,方便大家学习。 (VC6,MFC,socket)-Reliable simulation of the use of UDP transport protocol rdt2.0. The use of two procedures, one to send a receiver to facilitate learning. (VC6, MFC, socket)
Platform: | Size: 61440 | Author: liangliang | Hits:

[OS programProcessMonitor

Description: 该软件是用VC6.0开发的基于Windows平台的进程监控器,用于在程序异常终止后,自动重启,弥补了Windows平台进程不稳定的缺点,特别适用于需要长期稳定运行,无人值守的地方-This process is a course monitor that empolded from VC6.0,It is used at the time of process abended.
Platform: | Size: 216064 | Author: 管士学 | Hits:

[GDI-Bitmap09_ImageView_zhou

Description: 用vc6.0编写的图像显示程序,可显示所有windows图片以及tif、img等格式的文件,并可选择灰度显示或彩色(R、G、B)。程序使用了gdal库。-Prepared using vc6.0 image display program can display all the windows picture and tif, img, etc. file formats, and can choose grayscale or color (R, G, B). Program uses the gdal library.
Platform: | Size: 15345664 | Author: zhouxuecheng | Hits:

[ADO-ODBCHRMS

Description: 人力资源管理系统(VC6.0+SQL Server 2005) 是这样的一种管理软件,它能够快速、方便地显示结果,还可以对有关工资的各种信息进行统计,服务于财务部门及公司主要管理者。实施人力资源管理系统可以集中、整合各种信息来源,有利于降底管理成本,提高公司管理效率和水平,从而促进公司的进一步发展和变革。 本系统实现了以下功能:  系统界面设计美观、友好;  智能化程度高、操作灵活、方便;  系统运行稳定、安全可靠;  反应快速、计算准确;  实现新员工入职登记、查询修改及入职合同的录入、编辑;  登记并可以浏览日常考勤信息;  记录公司定期的员工考核成绩;  实现部门用人申请的登记;  实现应聘者信息备档;  实现工资单自动录入及缺勤原因的扣资计算。 -Human Resource Management System (VC6.0+ SQL Server 2005) This is the kind of management software that can quickly and easily display the results, but also a variety of information relating to wages statistics, service in the financial sector and company managers. The implementation of human resources management system can focus, integrating various sources of information in favor of reducing management costs, improve efficiency and level of corporate governance, thereby promoting the company s further development and change. The system has realized the following functions:  system interface design beautiful, friendly  high intelligence, flexible operation, convenient  system is running stable, safe and reliable  responsive to calculate accurate  recruits new staff to achieve registration, query modification and the entry contract entry, editing  registered and can browse the daily attendance information  R
Platform: | Size: 13399040 | Author: wucj | Hits:

[Internet-NetworkVC60_Programming_expose_an_guard_against_hackers.r

Description: Visual C++黑客编程揭秘与防范源代码 代码使用说明 首先在自己的计算机上安装vc6.0编程工具,MSDN,SDK等开发必须的工具, 然后用VC6.0分别打开MyClient.dsw、MyServer.dsw ,其里面是章节整合的代码,直接编译就可以独立运行。 为了大家使用方便,我没有对代码分章。具体的学习可以参考书中相关的代码到里面搜索确定相应代码位置。-Hacker Programming Visual C++ source code and Prevention Expose Use Code First installed on the computer vc6.0 own programming tools, MSDN, SDK and other development necessary tools Then VC6.0 were open MyClient.dsw, MyServer.dsw, its integration inside the code section, you can run independently compiled directly. For all easy to use, I do not have the code sub-chapter. Specific learning to the relevant reference code to the code inside the search to determine the appropriate location.
Platform: | Size: 7906304 | Author: 听雪忆晴 | Hits:

[source in ebooksnmp

Description: 编写snmp信息刺探工具 前置知识:winsock 难度: 中 编译环境:VC6.0+win2000 -、前置知识 SNMP 网络管理的历史 美国国防部设计了世界上头几个包交换网之一的ARPANET,在70年代,TCP/IP协议族正式被定为军方通信标准,随着此协议的广泛使用,网络管理成了一件大事。在80年代未和90年代初,网络迅速发展,许多子网数目的增多使监视网络活动成为一种必须 -Write the SNMP information spying tools Knowledge: winsock incremented Difficulty: Compile environment: VC6.0+ win2000 - and lead knowledge The SNMP management network of history U.S. defense design the world above the NCP one of several packet networks, in the 1970s, the TCP/IP protocol families will be officially designated the military communication standard, with the widespread use of this agreement, network management has become a great thing. In the 1980s and 1990s, the rapid development of network, and many more subnet Numbers to monitor network has become a must
Platform: | Size: 2048 | Author: xushuang | Hits:

[Software EngineeringVC6.0

Description: 利用VC6.0实现制作多媒体视频播放器,该播放器可以支持大多数常见的视频和音频格式-Achieved using VC6.0 multimedia video player, the player can support most common video and audio formats
Platform: | Size: 1968128 | Author: 陈欢 | Hits:

[VC/MFCvc6.0

Description: vc6.0使用教程,出错表,MFC深入浅出简体中文版,MFC教程-vc6.0 Tutorial, an error table, MFC easy to understand English version, MFC Tutorial
Platform: | Size: 3616768 | Author: 李小品 | Hits:

[Special EffectsRGB-histogram

Description: 结合VC6.0和Opencv实现图像的R、G、B分量的提取,并绘制成曲线-Extracting image s R, G, B component and drawing curves
Platform: | Size: 361472 | Author: pengyeping | Hits:

[Otherbcll

Description: 使用vc6.0开发 as-r机器人的程序并非自己写的不一定好用-Use vc6.0 development as-r robot program is not necessarily easy to write their own thank you
Platform: | Size: 1024 | Author: jim | Hits:

[Dialog_WindowVC(6.0)_ecg

Description: 用VC6.0编写的对话框程序,可以读取ECG(txt格式)数据,并画图。采用差分阈值法对心电信号进行R波的检测并显示R波检测的个数,效果较好。程序中也编写了一个滤波器对心电数据进行滤波。-VC6.0 prepared by the dialog box procedure, you can read ECG (txt format) data, and drawing. Differential threshold method ECG R-wave detect and display the number of R-wave detection, the better. The program also write a filter for filtering the ECG data.
Platform: | Size: 2111488 | Author: liuzengding | Hits:
« 12 »

CodeBus www.codebus.net