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

Search list

[Other resourcehrd_src

Description: 此版本的华容道仅是个VC++语言的演示版,只是为了演示 一种思路,所以没有增加任何的功能。本游戏图象也是从 同类FLASH游戏中剪出,可惜它的出处网页已经不可访问了. 由于华容道每角色同一时刻可能有不同方向的选择,增加了 判断难度。本游戏主要演示单键无选择控制华容道的模拟 智能处理过程。当然这很简单,谈不上真正的智能。 如果对AI类兴趣的话,可以到 http://chess.withu.com 和计算机下一盘,欢迎交流探讨该类AI算法。 本游戏还存在一些BUG,就请各位自己修正了。 (是在边界处理上,少处理了一种特殊情况) 另:本游戏开放源码,可以随意使用或修改。 ------ musix@withu.com , 2001 , taizhou,jiangsu-HuaRong Road is only the VC language version of the demonstration, only to demonstrate an idea, no increase in functionality. The game image is similar FLASH from the game, cut out, but it's not the source website has been visited. As HuaRong Road every role the same time may be different and the choice of direction, increasing the difficulty of judging. The main demonstration of a single-game non-selective control of HuaRong Road intelligent simulation process. Of course, this is very simple, no real intelligence. If the AI category of interest, to be the next http://chess.withu.com and computer disk welcome such exchange on AI algorithms. This game has some BUG, please own revision. (In the handling of the border, dealing with a few exceptional circumstances) another : the game open
Platform: | Size: 163639 | Author: 潘先生 | Hits:

[Other resource2005082715352721378

Description: 本程序是利用snmp协议提取mib2信息的小工具,可以用来查看主机的运行状态, 还可以利用它来分析网络流量。这是本人的第一次在网络上发表程序,难免会有 bug,还望大家多多指教,给我发email-use of this procedure is snmp agreement mib2 information from the small tool can be used to view mainframe operations, it can also be used to analyze network traffic. This is my first time on the Web publishing process, it is inevitable that there will be bug, we also hope the exhibitions to me by email
Platform: | Size: 459530 | Author: 高志洋 | Hits:

[Windows DevelopWinXP控件

Description: 根据WinXP控件改写,纠正了其中的一些BUG,加入Combox类,解决了VFP自身Combox作为编辑框存在的问题,在VFP7及后续版本中使用。-WinXP under control rewritten to correct some of the BUG include Combox category solve the VFP own Combox editors frame the issues, and follow-up version VFP7 use.
Platform: | Size: 76019 | Author: 何家南 | Hits:

[Other resourceVC编写--学生成绩管理系统

Description: 本程序在vc环境下编写,是本人在ACCP学习第一学期开发的,实现学生成绩管理的基本功能,注释详细,可供初学vc的朋友参考一二,如发现程序bug或有何建议,请反馈予本人,谢谢下载。-procedures in the environment vc preparation, I was learning the ACCP development of the first semester, students realize the basic performance management functionality, detailed notes, for beginners vc reference to a friend on January 2, found that procedures such as bug or any suggestions, please feedback to myself, thank you download.
Platform: | Size: 3492 | Author: 邵岩开 | Hits:

[CSharpaTelnetServerInCSharp

Description: 星期五 2004 05 28上午 10:16:16   昨天网上,正在上网,一时精力过剩,想起写一个Telnet Server的想法。 结果昨天网上2个小时,加上今天上午2个小时,一个被我称为O^O的Telnet Server诞生了。   之所以想写它,是因为我想用完全的OO的方法实现Telnet Server,用OO的 方法实现非常简单。而O^O Telnet Server这个名字的意思就是OO面向对象的意 思,只不过在中间加了个“^”而已。   O^O可以支持多个客户端同时连接,调用CMD.exe实现Shell,暂时只支持 2000、xp、2003系列,因为我没有98下的vs.net,所以我也不打算让他支持98。   刚刚完成,bug很多,不管他,先来个0.1的release再说。   呵呵,搞不好是绝版哦,还不看看先! 上午 10:28:47-Friday 2004 05 28 10:16:16 yesterday morning Internet is the Internet, 1:00 excess energy, and thought to write a Telnet Server ideas. Yesterday, the results online two hours this morning with two hours, I was called an O ^ O Telnet Server was born. Why write it because I want to spend the full OO method Telnet Server, with the OO method is very simple. O ^ O and Telnet Server meaning of the name is OO object-oriented meaning only in the middle of a "^." O ^ O can support multiple client link, calling CMD.exe achieve Shell, temporary support only 2000, xp, 2003 series, because I did not vs.net under 98, so I do not intend to let him support 98. Just completed, many bug, regardless first 0.1 months to repeat the release. Oh, they might be out of print, oh, do not look at the first
Platform: | Size: 12837 | Author: 孙立文 | Hits:

[Internet-NetworkYCArray

Description: /** * 动态数组的模板类 * 1.支持字符索引 * 2.方便的添加删除修改任意一项 * 最后更新 2004-8-9 yzh **1.优化了字符索引的运作方式,使用数组存储 **2.重写了底层数据的存储,将连续性的存储方式改为了非连续, *** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速 * 用法如: * YCArray<int,int> test * test.Add(\"Number2\",4) * test.Add(\"Number1\",2) * printf(\"%d %d\",test[\"Number1\"],test[\"Number2\"]) * 显示: * 2 4 ******* ******* History: 2004-11-19 修改了析构函数,解决了索引没有释放的bug **/-/ ** * dynamic array template class * 1. Support characters Index * 2. Add convenience to delete arbitrary * a final update 2004-8-9 yzh ** 1. Character Index optimized mode of operation, the use of storage arrays ** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good *** effective support to the "quote", and let the data changed to delete the more rapid * usage such as : * YCArraylt; int, intgt; test * test. Add ( "Number2", 4) * test.Add ( "Number1", 2) * printf ( "% d% d", test [ "Number1"] test [ "Number2"]) * Display : * * 2 4 ****** ******* History : 2004-11-19 revised the destructors, the index did not address the release of bug ** /
Platform: | Size: 5101 | Author: 叶振华 | Hits:

[CommunicationDRDoS

Description: CDrea的tOOLS,指定目标端口,指定TCP SERVER端口,以及指定TimeOut功能,修改了DRDOS Tool v0.2已知的bug。-CDrea the designated target ports, TCP Server designated ports, and the designation of TimeOut function, which amended the DRDOS Tool V0.2 known bug.
Platform: | Size: 2940 | Author: 得可爹 | Hits:

[File OperateTypeDir2

Description: 用二叉树的算法对指定目录下的文件和目录以格式化的方法保存。修改了原程序中的一些bug。 -binary tree algorithm used for the specified directory of files and directories to the formatting preserved. The original amendments to the procedures in some bug.
Platform: | Size: 20297 | Author: oliver | Hits:

[Process-ThreadLF_ThreadPool

Description: 一个在《ACE程序员指南》16章的线程池的例子,但是书上的代码有问题。我进行了修改,使得多线程的运行更加健壮,不会出现当队列中无消息时,线程池迅速消失的BUG。相信很多ACE初学者发现了此问题,在此卖弄一下。-an "ACE Programmer's Guide" Chapter 16 of the thread pool examples, but the book on the code problems. My modified so that the multi-threaded operation more robust, not when there were no queues at the news, thread pool rapidly disappearing BUG. Many believe that the ACE beginners discovered this issue in the play about.
Platform: | Size: 2875 | Author: zjw | Hits:

[Other resource跳板

Description: 这是我自己编写的类似与“是男人就下一百层”,但是还有一个小bug,我还没有改过来!正好给你们试手拉!-that I prepared with a similar "yes men on the next hundred layer", but there is a small bug, I do not change overnight! You just try to wheel!
Platform: | Size: 11606 | Author: 潘奇峰 | Hits:

[CSharp陈晓璐

Description: 24点牌游戏,我的第一个程序,还有很多bug没有修改,而且时间复杂度比较大.-24 sign game, my first procedure, but also has very many bug not to revise, moreover time complex quite is big
Platform: | Size: 8426 | Author: | Hits:

[Windows DevelopCyqLinux_RssReader

Description: 1. 这个程序是我另一个程序的DLL插件,主程序还未完成^_^ 2. DLL插件向外提供了四个函数接口--调用打开RSS窗口函数(LoadPIF), 在主程序中显示的名称(PIFName),关于窗口(PIAbout), 在主程序中显示的图标(PIICON)。 3. Code文件夹中Call文件夹为调用程序代码,RssReader文件夹为RssReader程序代码。Program文件夹中为演示程序文件。 4. RssReader程序可能有一些BUG^_^ 注意发现哟(发现了给我发E-MAIL:cyqlinux@126.com). 5. RssReader使用了ExpressBars Suite for Delphi 6界面控件。 6. RssReader程序中使用的图片从新浪点点通阅读器中提取(使用eXeScope程序提取). 7. 程序在Windows XP+SP1+Delphi 6中运行通过。-1. This procedure is another program DLL plug-ins, the main program has not yet been completed ^ _ ^ 2. DLL plug-in the field of four function interface -- called open window RSS function (LoadPIF), the main program indicate the name (PIFName) on the window (PIAbout), the main program shown in the icon (PIICON). 3. Code folder to folder Call Calling code, RssReader folder for RssReader code. Program folder for the demonstration program files. 4. RssReader procedures may be some BUG ^ _ ^ attention found yo (I found the E-MAIL : cyqlinux@126.com). 5. RssReader used ExpressBars Suite for Delphi 6 interface controls. 6. RssReader procedures used in the pictures from Sina little card readers extract (using eXeScope extraction procedures). 7. For Windows XP SP1 Delphi running through 6.
Platform: | Size: 827977 | Author: oliver | Hits:

[Other resource200422122233086862

Description: 一个MATLAB计算器程序,图形界面的 ,不过有个小BUG希望大家能-a calculator program, a graphical interface, but there is a small BUG hope we can s
Platform: | Size: 6565 | Author: 孙建明 | Hits:

[ADO-ODBC2005100310234615113

Description: 手机话费管理系统 本人数据库课程设计,还有几个BUG,请各位朋友进行完善。-phone calls database management system I curriculum design, there are several BUG, please friends perfect.
Platform: | Size: 473389 | Author: 林婧 | Hits:

[TreeViewWPEpro

Description: WPE网络数据截获工具, General all OllyDbg related discussions 876 3201 Plugins plugin related discussions 175 791 Bugs found a bug? post a report here 105 289 Announcements new OllyDbg versions informations 23 135 The Heap non OllyDbg discussions 62 227 OllyScript bugs/suggestions/scripts/... for OllyScript plugin 150 607 -Worldwide network data interception tools, General OllyDbg all related discussions Plugins plugin 876 3201 175791 related discussions Bugs found a bug post a report here OllyDbg 105,289 Announcements new versions informations 23,135 non OllyDbg The Run discussions 62,227 OllyScript bugs / suggestions / scripts / ... for OllyScript plugin 150 607
Platform: | Size: 312999 | Author: wj | Hits:

[Otherc语言通讯录

Description: 图形界面。可以对通讯录进行添加、查找、删除。可以进行上翻、下翻和看首页、尾页等操作。没有任何BUG-graphical interface. The directory can be added for, locate, delete. There can be turned, and turned to see where Home, tail-page operational. No BUG
Platform: | Size: 2909 | Author: 田天 | Hits:

[WinSock-NDIS外挂制作

Description: 学习制作外挂,其实是学习一门网络技术,不是仅仅是游戏!   我们玩游戏,游戏公司玩我们,你可以忍受游戏的不平衡吗?你可以忍受游戏的 BUG吗,你愿意交钱去买外挂(有时后还可能上当受骗)吗?你不愿意自己做外挂自己 用吗?你不愿意做几个外挂给你的朋友使用吗?你不愿意体验制作外挂的乐趣吗?你不 愿意自己的游戏ID有很多钱,很好的装备,很高的等级吗?看到别人拿着外挂到处惹是 生非,你心理平衡吗?所以,我们要自己制作外挂,做自己的外挂!   学习制作外挂,不是复杂的事,为什么不花点时间来学习学习呢?   学习外挂有3点好处:   1、学到一门技术(关于网络)   2、可以更好地玩游戏,   3、可以利用外挂赚到人民币
Platform: | Size: 11863732 | Author: 于籽粒 | Hits:

[Other resourcewChess058171040

Description: 中国象棋,人机对弈.利用了假期时间已经基本把它完成了.现在是第一个版本,可能还有BUG.我会加紧将它修改的.免费版!大家可以将它修改,作其它学习来用也可以.现在我的网页还没做好,如果我网页做好了,我会将我所编写的所有游戏源码、程序、文档一起和大家分享。-Chinese chess, human-machine game. Use of the holiday time it has been basically completed. Now is the first version, there may be BUG. I will step up its amended. Free version! We can amend it for other learning to use it can be. Now, I do not website, If I do the website, I will I have to prepare all the games source, procedures, documentation together and share with you all.
Platform: | Size: 126248 | Author: 凉风 | Hits:

[Other resourcecrcompany

Description: 企事业单位网站管理系统 防止数据库数据非法备份,防止漏洞注入,分页修改bug 后台主要功能如下: 一、系统管理: 二、企业信息: 三、产品管理:产品类别新增修改管理,产品添加修改以及产品的审核。 四、下载中心:可分类增加各种文件,如驱动和技术文档等文件的下载。 五、订单管理:查看订单的详细信息及订单处理。 六、会员管理:查看修改删除会员资料,及锁定解锁功能。可在线给会员发信! 七、新闻管理:能分大类和小类新闻,不再受新闻栏目的限制。 八、留言管理: 九、荣誉管理: 十、人才管理: 十一、营销网络: 十二、调查管理: 十三、邮件列表: 十四、友情链接: 十五、模板管理 -institutions site database management system to prevent the illegal data backup, to prevent malicious, tab background changes bug main functions are as follows : a, system management : 2, Enterprise Information : 3, product management : new product category management changes, product changes and the addition of products audit. 4, Download Center : increase can be categorized various documents, such as drivers and technical documentation and other documents downloaded. 5, order management : View details of the orders and order processing. Six Member Management : View Delete Member, lock and unlock features. Available online letter to the Member! 7, news management : can be divided into major categories and subcategories news, news columns are no longer subject to restrictions. 8, message m
Platform: | Size: 1441152 | Author: 王强 | Hits:

[Other resourceEsms2005

Description: 企业网站管理系统 2005 Build 1024 封装版 企业网站管理系统 v2005 封装版 Build 1018更新: 1、更新组件 2、去掉所有模板标签中所有的“Page=\"{NowPage}\"” 3、除了“Include/EsmsConfig.Asp”文件和数据库及模板目录,其它的全部用新版覆盖。 4、数据库中“Products”表中增加两个字段,分别是:“CnProMaterial”和“EnProMaterial”,都是文本型,字段大小默认就行。 5、模板ProductsView.html中增加“使用材料:{ProductsMaterial}”标签 Build 1024更新: 改写30%组件代码,并修正了几处已知BUG,一定程度上提高了性能及安全性 管理路经:Admin_Login.Asp 初始账号:admin 初始密码:admin -Enterprise Management System website Build 1,024 2,005 Packaging Enterprise Edition v2005 Site Management System Build Packaging Edition 1018 Update : an update two components, all the templates removed all the labels "Page =") (NowPage "" 3, in addition to "Include / EsmsConfig.Asp "document templates and databases and directories, with all the other new coverage. 4, the database "Products" table, two additional fields, namely : "CnProMaterial" and "EnProMaterial" are text-based, field trip on the size of the default. 5, template ProductsView.html added, "the use of material : () ProductsMaterial" label Build 1024 Update : 30% of components rewrite code, and amendments to the several known BUG, to some extent, improve t
Platform: | Size: 1075049 | Author: 王强 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 50 »

CodeBus www.codebus.net