-
computer_design
该程序能够实现计算器程序设计,采用C++编程,来自C++程序设计原理与实践。(The program can achieve calculator program design, using C++ programming, program design from C++ Principles and Practice)
- 2014-02-19 14:34:59下载
- 积分:1
-
databases-simplesql
Delphi dtabase beginer simple query by sql
- 2016-02-03 23:18:13下载
- 积分:1
-
ds18b20
s51控制的ds18b20温度检测模块 源码用keil编译的(s51 ds18b20 temperature control detection module source code compiled with keil)
- 2015-12-27 10:45:37下载
- 积分:1
-
基于pic的闪灯程序
基于pic12f508的闪灯程序,使用c语言写的简单易懂,适用初学者对小型芯片的认识士大夫撒旦法开始的开发和卡号是肯定发贺卡收到后付款哈萨克的合法开始的开发贺卡收到回复即可哈市的开发和凯撒的话发生的发生的发生的闪灯发生的发生的发生的发闪灯发生的发生的发生的发水电费撒地方撒旦发生的发生的发生的发阿斯蒂芬撒的发生地方撒旦法师打发斯蒂芬撒旦法闪灯发生的发生的发生的发
- 2022-01-26 02:12:30下载
- 积分:1
-
csaolei
C language is currently the more popular high-level computer programming language, because of its simplicity, ease of use and powerful features have been widely favored by programmers. It is suitable as a system description language, can also be used to prepare the system software, application software can be written since
- 2014-01-17 15:11:15下载
- 积分:1
-
netwinform例子,包含好几个例子,非常适合初学者来熟悉c#的插件及其基本原理,个人感觉还不错...
netwinform例子,包含好几个例子,非常适合初学者来熟悉c#的插件及其基本原理,个人感觉还不错-This is a collection of c# windows form example which can be learned through them,and its name is netwinform example,so you can download and learn c# basic through them
- 2022-09-19 10:10:02下载
- 积分:1
-
C# version of C# version of the chat room chat room chat room C# version of C# v...
C#版聊天室 C#版聊天室 -C# version of C# version of the chat room chat room chat room C# version of C# version of the chat room
- 2022-03-11 00:33:24下载
- 积分:1
-
DICOM Image Viewer C#版本DICOM影像显示源码
DICOM Image Viewer是一款dcm文件打开工具,可以轻松打开dcm文件,支持把dcm文件转换成BMP/JPG/TIF其他格式,链接为最新版,含源代码和说明,有需要的朋友快来下载。
- 2022-03-25 10:27:45下载
- 积分:1
-
cc
说明: 自动加料机控制系统 以单片机实现 用于毕业设计 (Automatic feeder control system the MCU for graduation design)
- 2012-11-08 08:39:33下载
- 积分:1
-
C#添加删除修改数据并生成Excel工作表格
C#添加删除修改数据并生成Excel工作表格,private void Button4_Click(object sender, EventArgs e)
{//新建工作表(在Excel文件型数据源中不支持删除操作)
var MyConnectString =@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=运货商.xlsx;Extended Properties=""Excel 12.0;HDR=YES"";";
var MyConnection=new OleDbConnection(MyConnectString);
if(MyConnection.State == ConnectionState.Closed)
MyConnection.Open();
var MySQL = "CREATE TABLE 新运货商(公司名称 char(50), 电话 char(20));";
var MyCommand=new OleDbCommand(MySQL, MyConnection);
MyCommand.ExecuteNonQuery();
MySQL = "INSERT INTO [新运货商$](公司名称,电话)VALUES ( +this.TextBox1.Text+,+this.TextBox2.Text+)";
MyCommand = new OleDbCommand(MySQL, MyConnection);
MyCommand.ExecuteNonQuery();
MySQL = "SELECT * FROM [新运货商$]";
var MyAdapter=new OleDbDataAdapter(MySQL, MyConnectString);
var MyTable=new DataTable();
MyAdapter.Fill(MyTable);
this.DataGridView1.DataSource = MyTable;
}
- 2022-03-16 02:17:15下载
- 积分:1