Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - idea
Search - idea - List
DL : 0
本源码为电子警察数据库备份工具,实现了对远程SQL Server2000数据库的连接和本地数据库的保存、文件备份等功能。由于远程数据库源码不便携带,所以这里关闭了ADO连接,不过读者可通过代码中使用到的字段进行建立。本代码算不上什么高质量的代码,里面的设计思想也只适合与RAD的设计思想,但是可以演示远程和本地数据库的一些控制方法,希望读者批评指正。-the source for electronic police database backup tool, a pair of remote SQL Server 2000 database connectivity and the preservation of local databases, file backup capabilities. Because the remote database source inconvenience portable, so here closed ADO connections, but the reader through the use of code for the establishment of the field. What this is not a high-quality source code, there is also the design and RAD are only suitable for the design idea, but we can demonstrate long-distance and local control of the database, in the hope of correcting the reader criticism.
Update : 2008-10-13 Size : 3995085 Publisher : 余灿基

用RMI构建聊天应用程序: 其基本思想是:多个客户通过APLLET进行聊天,客户的聊天内容分别显示在各自的 TextArea 内,要做到这些,需要做到: 1、客户首先向服务器注册,告知服务器它在监听某主题; 2、客户注册之后,向服务器发送消息; 3、服务器再把消息发送给所有监听此主题的客户-Construction chatting with RMI application : The basic idea is : many customers APLLET for chat, chat clients as shown separately in the respective TextArea, to achieve this, the need to do so : 1, the first client to the server registration, it tells the server in a wiretapping theme; 2, registered customers, send messages to the server; 3, the server then send information to all of this theme eavesdropping customers
Update : 2008-10-13 Size : 8640 Publisher : 杨旭迎

DL : 0
这是加密算法的几个算法,有AES,DLL,IDEA算法,我觉得不错,同大家分享!-This is the encryption algorithm several algorithm, AES, DLL, IDEA algorithm, I think it's good to share with you!
Update : 2008-10-13 Size : 331125 Publisher : 首首

本人的毕业设计,获得校2005年优秀毕业设计有叫详细的设计思想-I graduated design school in 2005 was outstanding graduate design called the detailed design idea
Update : 2008-10-13 Size : 2085378 Publisher : 顾雷

课程设计的环境是Linux 操作系统。 设计时可利用Linux 提供的文件管理的功能调用,建立一个模拟的文件系统。基本思想是,在Linux 系统中创建一个较大容量的文件,作为所设计的文件系统的“文件卷”,并利用Linux 系统的功能调用,编写各程序模块。-curriculum design environment is the Linux operating system. The design can use Linux for the document management function calls, establish a simulation file system. The basic idea is the Linux system to create a greater capacity, the document is designed as a file system documents "Volume", and the use of the Linux system function calls, the preparation of the program modules.
Update : 2008-10-13 Size : 55964 Publisher : 小生

vb超市销售管理系统源码,这是一套完整的代码,它包括了一个软件开发过程中,从设计到实现的所有文档,资源以及完整源代码。也许许多人不清楚怎么以一个软件工程的思想去完成软件开发,这就是我发布所有源代码的目的。软件=文档+程序,这是许多人都知道的;履行这个思想,便是本套程序的开发守则。但由于这个课程设计的时间太短,才2周,有些地方做得比较马虎,或出现某些错误;但对大多数学习VB的朋友,还是有许多借鉴的地方的。 运行前请参照 “运行说明书.txt” 文件 -vb source code management system, which is a complete code, which includes a software development process, from design to the realization of all documents, resources and integrity of the source code. Perhaps many people do not know how to a software engineering ideas to complete software development, and this is all I have source code for the purpose. = + Software documentation procedures, which is what many people are aware of; To fulfill this idea is, the set of procedures for the development of the Code. However, due to the design of the course was too short, only two weeks, something is not done more careless, or to some mistake; But for the majority of learning VB friends, or from the many places. Please refer to the pre-operational "Operation brochures. Txt "file
Update : 2008-10-13 Size : 699256 Publisher : 张自

我做的那部分是直接嵌入组长的OS.JAVA文档中,因为OS文档是编写主界面的,所以直接插入OS中比较方便. 主要思想是这样的:就是在主界面上创建一个文本框,用于接受键盘输入.只要在文本框中输入命令,无论是否正确,系统将会作出反应.-me to do the part of a head of the embedded directly OS.JAVA documents, because OS documentation is the main interface of the preparation, directly into the OS more convenient. The main idea is this : is the main interface to create a text box, for receiving keyboard input. As long as the text box import orders, whether correctly, the system will respond.
Update : 2008-10-13 Size : 2944 Publisher : 才才

对于编程来说,编程思想重要,而语法也是不可忽略的,这个就是介绍C++ 中虚函数的语法-for programming, the programming idea is important, and grammar is not overlooked, the C is introduced virtual function syntax
Update : 2008-10-13 Size : 3648 Publisher : 刘庆

分区式存储管理源代码 一、可变分区存储管理的基本策略 1)不预先划分几个固定分区,分区的建立是在作业的处理过程中进行的,各分区的大小由作业的空间需求量决定。 2)采用指针方式将各个空闲分区链接而成的链表,用以记录主存分配现状。 3)分配与回收算法按空闲分区链接方式的不同分类,有最佳、最坏、首次和下次适应四种算法。 二、程序模拟的设计 1、基本思想 采用事件驱动模型。事件有: 1)申请主存事件,表示一个作业创建时提出的主存资源要求; 2)释放主存事件,表示一个作业结束时其占用主存被回收。 2、数据结构设计 ...... typedef struct Event_DataType{事件数据类型的定义intEventType事件的类型 申请ASK或释放RELEASE int OccurTime 事件发生的时间 char JobName 申请主存或被回收主存的作业名 int JobId 进入系统的作业在作业表中相应表项的编号 int SizeOfMemoryForAsk 作业申请占用主存的尺寸 int OccupyTimeOfMemoryForAsk 作业申请占用主存的时间长度 int WaitFlag 该事件是否等待过TRUE或FALSE-storage management through source code one, Variable storage management through the basic strategy of a) not divided into several pre-fixed Division, through the establishment of operations in the processing of the district by the size of demand for space operations decision. 2) use of the various methods pointer idle through link from the linked list, to record the status quo distribution of the main deposit. 3) the allocation and recovery algorithm by idle through links to the different classifications, the best and the worst, the first four and the next adaptation algorithms. Two, the program simulates a design, the basic idea using event-driven model. Events are : a) for the main deposit, said an operation created when the main deposit resource requirements; 2) The release of the main
Update : 2008-10-13 Size : 6101 Publisher : Joly

DL : 0
多边形裁剪是逐次多边裁剪法,它的基本思想是以窗口的四条边界线单一逐次对多边形裁剪-polygon clipping is Successive multilateral cutting, its basic idea is a window four successive boundaries of a single polygon clipping
Update : 2008-10-13 Size : 1640 Publisher : 00

本书通过85个实例全面讲述了应用MFC进行Visual C++编程的思想。每个实例均以编写一个应用程序要走的步骤编写。全书共分四部分进行介绍,第一部分是基础知识,第二部分讲述用户界面的实例,第三部分讲述MFC内部处理方面的实例,第四部分讲述打包实例。全书基本上面向实例进行阐述,讲解透彻、易于掌握。本书既可作为初学者和大专院校师生的自学参考书,也可作为计算机软件开发人员的技术参考书。 -the book through 85 examples on the application of comprehensive MFC Visual C Programming for the idea. Each case were preparing an application to take steps to prepare. The book is divided into four parts, the first part is the basis of knowledge, on the second part of the user interface examples, the third part about MFC internal processing examples on the fourth part of a package examples. The book is basically for example expounded on the thorough and easy to master. This book can serve both as beginners and tertiary students self-reference books, can a computer software developer of technical reference books.
Update : 2008-10-13 Size : 13592846 Publisher : moper8759

(2) 主要算法的基本思想: 从题目上来分析我认为这是一个图的最短路径问题。因此决定用Dijkstra算法按路径长度递增的顺序逐步产生最短路径的方法:设置两个顶点的集合T和S,集合S中存放已找到的最短路径的顶点,集合T中存放当前还未找到的最短路径的顶点。初始状态时,集合S中只包含源点V0,然后不断从集合T中选取到顶点V0路径长度最短的顶点加入到集合S中,集合S中每加入一个新的顶点U,都要修改顶点V0到集合T中剩余顶点的最短路径长度值,集合T中各顶点新的最短路径长度值为原来的最短路径长度值与顶点U的最短路径长度只值中的较小的。此过程不断重复,直到集合T的顶点全部加入到集合S为止。 -(2) the principal on the basic idea : onto analysis from the topics I think this is a map of the shortest path problem. It decided to use Dijkstra algorithm by increasing the path length of the order gradually emerge from the shortest path approach : set up two vertices of the pool T and S, S storage pools have found the shortest path to the peak, Set T has not kept current to find the shortest path to the peak. Initial state, the pool S contain only source V0. and then from the pool of selected T vertex V0 shortest path length of the apex into pools S, S pool each add a new peak U, vertex V0 be changed to pool the remaining vertices T is the shortest path length value, Set T vertices new shortest path length of the original value of the shortest path length and value of the vertex U short
Update : 2008-10-13 Size : 23915 Publisher : 林渊

最短路径算法源码,很多人需要的。本人载网站开发gis,游自编的最短路径查询程序,速度特快,3万节点,35000条路全部遍历,只需1秒。现将最短路径的思路告诉大家,希望大家在优化,并用不同语言编制,我正在学delphi,准备用delphi做成库,本例以由拓扑关系的arc/info 文件为数据源。其中a1,b1,c1是以fnode排序生成的数组,a1对应fnode,b1对应tnode,c1对应length,同样a2,b2,c2,是以tnode 生成的数组。Indexa1是对应某一起点与其相连的终点的个数,indexb1时对应某一终点与其相连的起点的个数,即其拓扑关系。 -shortest path algorithm source, a lot of people in need. I gis contained web site development, Yu directed the shortest path query procedures, speed express routes, 30,000 nodes, all 35,000 traverse the road, only a seconds. Now Shortest Path tell you the idea that we should optimization, and use different language, delphi is studying, I wanted to use delphi caused basement, in the cases from the arc topology / info file as the data source. Which a1, b1, c1 fnode ranking is generated by the array, a1 fnode counterparts, b1 counterparts tnode, c1 corresponding length, the same a2, b2, c2, tnode is generating array. Indexa1 counterparts is a starting point, linked with the end of the number, indexb1 counterparts at a terminal connected to its starting point the number, which is its topologic
Update : 2008-10-13 Size : 2416 Publisher : x

VB窗体换肤的界面控件,一个我自己研发构思的程序。-VB forms Eurocargo interface controls, an idea of my own research and development process.
Update : 2008-10-13 Size : 53542 Publisher : 王楠

DL : 0
快速排序 算法的基本思想: 快速排序的基本思想是基于分治策略的。对于输入的子序列ap..ar,如果规模足够小则直接进行排序,否则分三步处理 -fast algorithm basic idea : Quick Sort The basic idea is based on the divide and conquer strategy. For input sequences ap .. ar, if the scale is small enough for direct sequencing, otherwise handled in three steps
Update : 2008-10-13 Size : 25441 Publisher : 李伯

在VC编码设计之前应该注意的问题,属于OOP设计思想-in VC design before coding should pay attention to the issue of belonging to OOP design idea
Update : 2008-10-13 Size : 2155 Publisher : 方华红

Mosquitos是非常不错的设想头游戏!-Mosquitos is a very good idea for the first game!
Update : 2008-10-13 Size : 35077 Publisher : 苏文博

此文件包括蒙特卡罗方法的基本思想及应用,有很多MATLAB实例,是学习蒙特卡罗方法的很好资料。没有解压密码-this document, including the Monte Carlo method and the application of the basic idea, there are many examples of MATLAB study is a good method of Monte Carlo data. No extracting passwords
Update : 2008-10-13 Size : 3679987 Publisher : 陈圣

DL : 0
在 VCKBASE 的在线杂志 第36期 看到网友 xingxueping 的一篇名为“图形显示CPU内存利用率”的文章。感觉很不错。唯一不足的是外观不太完美, 所以有了要改进的想法。我又参考了一下Windows任务管理器(图一),于是模仿MS的东西,做了这个控件...... [代码性质] VC可重用代码段 [代码作者] 叶小舟 [文件大小] 174K [更新日期] 2005-11-11 10:31:00 -VCKBASE in the online magazine section 36 of xingxueping see a netizen called "graphics CPU memory utilization," the article. The feeling is very good. The only shortage is not perfect appearance, with the idea to improve. I have drawn a bit Windows Task Manager (Figure 1), and MS imitate things done the controls ...... [code nature] VC reusability of the code [code writers] Ye shallop [File Size : 174K [updated] 2005 - 11-11 10:31:00
Update : 2008-10-13 Size : 31384 Publisher : ddd

DL : 0
EXE文件加密器 包含文件 filelock.exe 主文件 readme.txt 说明文件 运行环境 PWIN9X,PWIN2000,16M以上。 完成日志: 3月3日,阳光日立,产生了作一个EXE文件加密器的想法。 3月12日初步完成1.0版,编译环境WIN2000,DELPHI5。自行测试没发现什么错误。 3月13日改进程序内部消息提示。 3月20日发布1.21版,经过2000下所有测试,增加文件判断是否已经加密。 3月22日同学发现在98下字体变大,无法检测到加密标志,显示错误提示,这是一个大BUG,用了3个小时发现了错误所在,改进…… 3月25日,网友测试提出建议,增加了参数传递。 3月27日,发布1.62版,良好的运行在WIN98和WIN2000环境下。-EXE file encryption device contains documents filelock.exe main file readme.txt note runtime environment PWIN9X, PWIN2000, 16M and above. Complete Log : March 3, sunny Hitachi, have made an EXE file encryption for the idea. March 12 initially completed version 1.0 compiler environment WIN2000, Delphi 5. Self-testing we did not find anything wrong. March 13 to improve internal procedures news suggested. March 20 release version 1.21, after 2000 under all the tests to determine whether additional documents have been encrypted. On March 22 students found in 98 fonts larger and encryption can not be detected signs showing the error indicates that this is a big BUG, spent three hours discovered the errors, improve ... March 25, net surfers testing proposed to increase the transmission parameter
Update : 2008-10-13 Size : 44911 Publisher : ff
« 1 2 ... 7 8 9 10 11 1213 14 15 16 17 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.