Welcome![Sign In][Sign Up]
Location:
Search - please insert the add-

Search list

[SCMKeilC51v612

Description: keil C51 v6.12 完全解密版的安装说明 安装方法是执行setup\setup.exe 安装程序,选择安装Eval Version版进 行安装。 注册码:K199U-20071-12A9U 当出现Please insert the add-on disk的提示画面,可按next按钮(不用 插入软盘)。 安装好之后就可以使用,没有代码大小的限制,这是完全版,比 Eval版增 加浮点库等内容。-keil C51 v6.12 full Jiemi Ban the installation instructions to install the method is to run setup \ setup.exe installation program, choose to install Eval Version version to install. License: K199U-20071-12A9U When the Please insert the add-on disk of the prompt screen, may be next button (do not insert a floppy disk). After installed, you can use, no code size limit, this is full version, than the increase in floating-point library Eval version and so on.
Platform: | Size: 10900480 | Author: gang | Hits:

[ADO-ODBCJDBC

Description: Student { String name Date birthday String homeAddress String classNumber } 请在数据库中创建表格记录上面的类,并用界面显示数据库中的数据,用户可以通过界面插入,删除和修改数据,可以修改多个数据再进行提交,这时候要求一个更改没有成功更新,所有更新都要回滚。 要求: 1. 安装MySql,并建立Table Student,里面添加一些测试数据。 2. 用界面显示数据库中的数据。 3. 实现插入删除,修改数据的接口。 4. 显示数据的界面要求像Excel一样,可以添加,修改和删除,然后当用户所有修改结束后,点击提交,程序根据变化调用插入,删除或者修改函数,更新数据库。 5. 点击提交前发生的变动要么全部提交成功,要么一条也不提交。即当有修改提交失败的时候,前面的要求不能更新。 -Student { String name Date birthday String homeAddress String classNumber } Please create a table in the database records of the above class and use interface displays data in the database, users can interface to insert, delete, and Modify data, you can modify multiple data be submitted again, this time asking for a change not successfully updated, all updates should be rolled back. Requirements: 1. Install MySql, and the establishment of Table Student, which add some test data. 2. use interface displays data in the database. 3. to achieve insert delete, modify the data interface. 4. display the data as the interface requirements such as Excel, you can add, modify, and delete, and then when the user after all the changes, Click Submit, the program according to changes in call to insert, delete or modify the function, update the database. 5. Click Submit changes occurred before the submission of either all succeed or not to submit one. That is, when there are change
Platform: | Size: 19456 | Author: 征途 | Hits:

[SCMkeiluvision2hh

Description: keil C51 v6.12 完全解密版的安装说明 执行setup文件夹中setup.exe 安装程序,选择安装Full Version版进 行安装。 注册码:K199U-20071-12A9U 当出现Please insert the add-on disk的提示画面,可按next按钮(不用 插入软盘)。-Please insert the add-on disk
Platform: | Size: 11734016 | Author: qkhh | Hits:

[WEB Codewymeditor

Description: WYMeditor是一款基于jQuery为核心的开源网页编辑器,开源免费,体积小,不会占用过多的系统资源,在国外使用的比较多,在这里提醒一下广大朋友,这款网页编辑器测试中没有发现有有上传功能,图片和文件均不能上传,能加注释插入图片功能,请根据自己的需求选用。-WYMeditor is a core based on jQuery open source web editor, open source, free, small, does not take up too many system resources, used more in foreign countries, where the majority of my friends remind, this web editor testing upload feature not found there, can not upload pictures and documents, to add a comment insert Picture function, please choose according to their needs.
Platform: | Size: 361472 | Author: mpudn55 | Hits:

[WEB Codeyrcms_v1.0

Description: 易人CMS(YRCMS)是一套针对企业用户的网站管理系统。他高效、智能、实用、易用、灵巧、全面,深受广大企业用户好评。他采用较成熟的 ASP+ACCESS 设计编写,系统架构优秀,高可用性设计,操作简单,功能强大,同时支持任意多语言,优秀的模板机制,简单而灵活。完全可自制模板,只需插入相应函数标签即可。 易人CMS(YRCMS)系统可建设企业、单位、学校、中小型门户网站建设所需的模块(单页、新闻、产品、订单、下载、案例、人才),任意添加删除修改栏目,网站的所有内容都可以通过后台管理。同时,用户二次开发也非常容易! 后台:/admin/admin_login.asp 用户名:yrcmc 密码:yrcms 更多模板请进入 http://www.yrcms.com-CMS (YRCMS) is a website management system for enterprise users. He is efficient, intelligent, practical, easy to use, smart, comprehensive, by the majority of business users. He used a more mature ASP+ACCESS design, system architecture is excellent, high availability design, simple operation, powerful, at the same time to support any multi language, excellent template mechanism, simple and flexible. Completely self- made template, simply insert the corresponding function tag can be. CMS (YRCMS) system can be built by enterprises, units, schools, small and medium portal construction of the required modules (single page, news, products, orders, download, case, personnel), add delete modify the column, all the contents of the site can be through the background management. At the same time, the user two development is also very easy! Background: /admin/admin_login.asp user name: yrcmc password: yrcms More templates, please enter http://www.yrcms.com
Platform: | Size: 2833408 | Author: xxpudn85 | Hits:

[assembly languagexianxingbiao

Description: 实现顺序表的基本操作(最终提交“.cpp”) 程序要求: 先给出顺序表的类型定义 给出顺序表的如下基本操作的算法函数定义 构造一个空的线性表:InitList_Sq(SqList &L) 在顺序表L的第i个位置之前插入新的元素e:ListInsert_Sq(SqList &L, int I, ElemType e) 在顺序表L中删除第i个元素,并用e返回其值:ListDelete_Sq(SqList &L, int I, ElemType &e) 实现如下新操作的函数定义: 借助ListInsert_Sq操作创建一个顺序表:ListCreate_Sq(?) 计算线性表的长度:ListLength_Sq(?) 打印顺序表中的所有元素值:ListPrint_Sq(?) 其中?请自行添加适宜的参数表 在主函数中调用上述函数进行测试,给出测试结果截图-To achieve the basic operation of the order form (the final submission .Cpp ) Program requirements: First, the definition of the type of the order table is given. The algorithm function definition of the following basic operation of the order table is given. Construct an empty linear list: InitList_Sq (&L SqList) Insert the new element e:ListInsert_Sq (&L SqList, I int,, e ElemType, L) before the first I of the sequence table. Removes the first I element in the sequence table L and returns its value with ListDelete_Sq: e (&L SqList, I int, &e ElemType). To achieve the following functions defined in the new operation: Create a sequence table with the help of ListInsert_Sq operations: ListCreate_Sq (?) Calculate the length of the linear table: ListLength_Sq (?) All the elements in the print order table: ListPrint_Sq (?) Among them, please add the appropriate parameter table Call the function in the main function to test, give the test results screenshot
Platform: | Size: 1024 | Author: 黄金 | Hits:

CodeBus www.codebus.net