Welcome![Sign In][Sign Up]
Location:
Search - Add da

Search list

[CSharpphoto

Description: 在ACESS 2000中存储显示图片 // 实例化 oleDbCommand1对象 da = new OleDbDataAdapter() da.SelectCommand = oleDbCommand1 //实例化 OleDbCommandBuilder 对象 否则无法进行数据刷新 cb = new OleDbCommandBuilder(da) // 找到数据集dataSet1 就是找到了一个可以接水的容器 da.Fill(dataSet1, \"Image1\") // 在运行状态中绑定数据库与数据表 // 这属于一种复杂绑定 //dataGrid1.SetDataBinding(dataSet1, \"Account\") // 绑定TextBox1的内容与Account.AccountID // 这属于一种简单绑定 textBox1.DataBindings.Add(\"Text\", dataSet1, \"Image1.ID\") // 绑定TextBox1的内容与Account.Owner // 这属于一种简单绑定 //textBox2.DataBindings.Add(\"Text\", dataSet1, \"Account.Owner\") // 建立一个dataSet1的管理器 来控制当前数据的位置 bManager = this.BindingContext [dataSet1, \"Image1\"]
Platform: | Size: 1366088 | Author: 000 | Hits:

[CSharpphoto

Description: 在ACESS 2000中存储显示图片 // 实例化 oleDbCommand1对象 da = new OleDbDataAdapter() da.SelectCommand = oleDbCommand1 //实例化 OleDbCommandBuilder 对象 否则无法进行数据刷新 cb = new OleDbCommandBuilder(da) // 找到数据集dataSet1 就是找到了一个可以接水的容器 da.Fill(dataSet1, "Image1") // 在运行状态中绑定数据库与数据表 // 这属于一种复杂绑定 //dataGrid1.SetDataBinding(dataSet1, "Account") // 绑定TextBox1的内容与Account.AccountID // 这属于一种简单绑定 textBox1.DataBindings.Add("Text", dataSet1, "Image1.ID") // 绑定TextBox1的内容与Account.Owner // 这属于一种简单绑定 //textBox2.DataBindings.Add("Text", dataSet1, "Account.Owner") // 建立一个dataSet1的管理器 来控制当前数据的位置 bManager = this.BindingContext [dataSet1, "Image1"] -err
Platform: | Size: 1366016 | Author: 000 | Hits:

[SCMVIOCEPLAYv1

Description: 单片机利用DA转换播放语音音乐的的源程序,程序虽然简单,但非常实用,在系统设计中可以非常方便的添加语音和音乐功能,另外将上载一个语言数据提取的程序供大家参考-Single-chip voice to use DA conversion Play music source, the procedure is simple, but very useful in system design can easily add voice and music functions, the other will be uploaded to a language data extraction procedures for the U.S. reference
Platform: | Size: 10240 | Author: Jiang dz | Hits:

[GIS programadd_data

Description: Examples of add data,such as Load Tin,covarge, cad data, mdb file,raster data
Platform: | Size: 5120 | Author: yanmingxing | Hits:

[JSP/Javatestdb

Description: 我分别写了对ACCESS数据库和MYSQL数据库的两个例子,分别在test accesst和test mysql两个文件夹下面。 如果是access数据库的那个就请在数据源里面新建一个名称为test的数据库,并在其中建立一个表,表名为admin,路径为我给你的第一个文件夹路径 此文件夹下面的chaxun.jsp是用来查询数据库数据的,xiugai.jsp是用来添加数据库数据的,至于修改的话,自己看懂了的话就可以自由发挥了 如果是mysql数据库的那个就请在mysql里面新建一个名称为test的数据库,用下面的命令创建表,表名为admin: creat table admin ( username varchar(10) primary key, password varchar(16) ) 然后自行在其中添加若干数据,以便测试用。 此文件夹下面的chaxun.jsp是用来查询数据库数据的,xiugai.jsp是用来添加数据库数据的,至于修改的话,自己看懂了的话就可以自由发挥了 数据库和表名不要搞混了!-I write separately to the ACCESS database and the MYSQL database, two examples, respectively, and test mysql in the test accesst the following two folders. If it is, please access the database that the data source inside the new name for a test database, and in which the establishment of a table, the table is named admin, I ll give you the path to a folder path first Following chaxun.jsp this folder is used to query the database the data, xiugai.jsp is used to add a database of data, as amended, then read the words themselves can be freely played a If it is that mysql database mysql on the inside in the new name for a test database, use the following command to create the table, the table is named admin: creat table admin ( username varchar (10) primary key, password varchar (16) ) And then add on their own in which a number of data for testing. Following chaxun.jsp this folder is used to query the database the data, xiugai.jsp is used to add a database of da
Platform: | Size: 13312 | Author: lvchao | Hits:

[OtherS51E(AVR)

Description: 多字节BCD码加法 入口条件:字节数在R7中,被加数在[R0]中,加数在[R1]中。 出口信息:和在[R0]中,最高位进位在CY中。 影响资源:PSW、A、R2 堆栈需求: 2字节 BCDA: MOV A,R7 ;取字节数至R2中 MOV R2,A ADD A,R0 ;初始化数据指针 MOV R0,A MOV A,R2 ADD A,R1 MOV R1,A CLR C BCD1: DEC R0 ;调整数据指针 DEC R1 MOV A,@R0 ADDC A,@R1 ;按字节相加 DA A ;十进制调整 MOV @R0,A ;和存回[R0]中 DJNZ R2,BCD1 ;处理完所有字节 RET   - 多字节BCD码加法 入口条件:字节数在R7中,被加数在[R0]中,加数在[R1]中。 出口信息:和在[R0]中,最高位进位在CY中。 影响资源:PSW、A、R2 堆栈需求: 2字节 BCDA: MOV A,R7 ;取字节数至R2中 MOV R2,A ADD A,R0 ;初始化数据指针 MOV R0,A MOV A,R2 ADD A,R1 MOV R1,A CLR C BCD1: DEC R0 ;调整数据指针 DEC R1 MOV A,@R0 ADDC A,@R1 ;按字节相加 DA A ;十进制调整 MOV @R0,A ;和存回[R0]中 DJNZ R2,BCD1 ;处理完所有字节 RET  
Platform: | Size: 32768 | Author: lhp | Hits:

[Internet-NetworkComputer

Description: HuGo版文章发布系统(三层MVC模式) 主要功能: 1、文章管理:发布、修改、删除文章,还能对文章进行置顶、推荐、审核等操作。 2、用户管理:添加、修改、删除用户,还能对用户进行审核、锁定等操作,其中用户密码用了3次MD5加密。 3、栏目管理:实现ajax二级栏目联动,对栏目进行添加修改和删除。 主要特色: 1、网站采用3层模式开发,实现了表现层、数据层和业务逻辑层的分离。 2、整站采用CSS布局,很多表现层东西都用CSS来实现。 3、本站所有链接采用UrlReWrite实现伪静态,隐藏了扩展名。 4、用AjaxPro.2.dll实现二级栏目联动,并解决了栏目取值问题。(但修改文章时二级栏目在页面加载时无法从数据库取值的问题还没解决) 5、本站采用forms身份和角色验证,实现管理员和普通用户两类不同的权限。 6、采用FCk编辑器,数据库操作用SqlHelper封装等等。-HuGo version of the article distribution system (three-tier MVC pattern) Main functions: 1, the article management: publish, modify, delete articles, but also are articles Top, recommend, review such an operation. 2, user management: add, modify, delete users, but also review the user, lock and other operations, including user passwords used three times MD5 encryption. 3, columns management: achieving ajax 2 column linkage, to modify, and delete columns be added. Main features: 1, the website uses 3-layer model development to achieve the presentation layer, the data layer and business logic layer separation. 2, the entire station using CSS layouts, a lot of things with the CSS presentation layer to achieve. 3, site all the links used UrlReWrite achieve pseudo-static, hidden extension. 4, with two sections to achieve AjaxPro.2.dll linkage and to resolve the issue value of the column. (But not modify articles on two sections in the page can not be loaded from the da
Platform: | Size: 5091328 | Author: zhengjiujiang | Hits:

[CSharpAdd_Data

Description: AE+C#开发下的加载各种数据,包括栅格,矢量等-AE+ C# development under the load of various data, including raster, vector and so on. .
Platform: | Size: 1024 | Author: shenhuajin | Hits:

[Windows DevelopIE

Description: 仿IE7的浏览器功能很强大这是一个开源程序我加上了很多的新的功能比如:支持置顶,和到达底端支持Google翻译绑定主页支持换肤主体是用vb.net做的框架是c# -Imitation of IE7' s browser functionality is a very powerful open source program that I add a lot of new the features such as: support for top, and bottom support Google Fan Yi Dao Da binding home support skins are used vb.net Zuo Zhu Ti' s framework c#
Platform: | Size: 11164672 | Author: 李峰 | Hits:

[Multimedia Developplayer

Description: 本代码是一个实现万能播放器 万能转码 视频质量调节的程序,已支持的视频格式有,标准视频格式(FFMPEG所支持),大华,海康,H3C,汉邦,黄河,恒忆,科达,朗驰,东方网力,万家安,天地伟业。 可扩展性高,在有视频厂商SDK的情况下,可接入, 兼容性高,解决多厂商SDK冲突不能同时加载的问题;稳定性高,用子进程处理播放以及转码等,未知错误下,不会引起主进程退出。 因程序有些大,删除了部分,需要完整版的,请加QQ :453578188 昵称:lkai.y-This code is a universal player to achieve universal transcoding video quality adjustment procedures have been supported video formats, the standard video format (FFMPEG supported), UOB, Kang, H3C, parti, Yellow River, Numonyx, Branch Da, Long Chi, LONDON force, 10,000 security, Albert world. Scalability is high, there is the case of the video maker SDK, you can access, high compatibility, multi-vendor SDK to solve the conflict can not be loaded question stability is high, the process of dealing with a child playing and transcoding, etc., under unknown error , does not cause the main process exits. Due process, some large, removed some, need the full version, please add QQ: 453578188 Nickname: lkai.y
Platform: | Size: 12771328 | Author: LKai | Hits:

[VHDL-FPGA-Verilogs2

Description: ad9708与ad9280的程序,ad采集进来再da输出,在中间可以自行加一些算法。-ad9708 and ad9280 programs, ad collection come again da output, in the middle of some of the algorithms can add their own.
Platform: | Size: 6337536 | Author: | Hits:

[SCMPower_ctrl

Description: 基于51单片机的稳压电源设计——程序分为键盘处理、D/A、A/D和存储四个模块。运用扫描法,对键盘进行扫描,有按键就更改输入TLC5615的数值,ADD按键是对数据进行加以操做,长按的话使步进值增大,实现快加,SUB按键与ADD按键相同,预读取按键用于读取 AT24C04 中预置的数值,保存按键用于保存当前电压值;显示部分主要是对TLC549采集回来的电压进行处理显示,它主要是在定时器0的中断服务程序中显示,100ms刷新显示一次。TLC5615模块,通过对DA的串行数据输入,使其在输出电压时可控,输出电压后经LM324、三极管,加上负载输出电压,输出电压后,用TLC549芯片100ms采集一次,送到数码管显示。-Based on 51 single-chip power supply design- the program is divided into keyboard processing, D/A, A/D and storage of four modules. The use of scanning method, the keyboard scan, a key to change the value of the input TLC5615, ADD button is to do the data to do, long press the step value increases to achieve fast add, SUB button with the ADD key, Read key is used to read AT24C04 preset value, save the button for saving the current voltage display part of the TLC549 is mainly the voltage collected back to deal with the display, it is mainly in the timer 0 interrupt service routine display , 100ms refresh display once. TLC5615 module, through the serial data input to the DA, so that when the output voltage controllable, the output voltage after the LM324, transistor, with the load output voltage, the output voltage, with TLC549 chip 100ms acquisition time, to the digital display.
Platform: | Size: 122880 | Author: XXJ | Hits:

CodeBus www.codebus.net