-
IP-address
能够对IP地址的合法性进行判断以及相应的子网(Able to judge the legitimacy of the IP address and the corresponding subnet)
- 2014-01-01 10:16:23下载
- 积分:1
-
02
说明: c#编程实例C#项目开发经典实战,包含源码,vs2008编写(c# programming examples C# project development of the classic combat, including source code, vs2008 to write)
- 2013-07-25 09:04:18下载
- 积分:1
-
人脸识别库
What is EBLearn?
Eblearn is an object-oriented C++ library that implements various machine learning models, including energy-based learning, gradient-based learning for machine composed of multiple heterogeneous modules. In particular, the library provides a complete set of tools for building, training, and running convolutional networks.
A face detector trained in eblearn (Scroll to bottom for detailed outputs)
- 2023-02-04 09:40:04下载
- 积分:1
-
基于51单片机的温度控制系统
基于51单片机的温度控制系统,LCD1602液晶显示屏显示,DS18B20温度传感器测的外界温度,代码可以实现设置最高温度和最低温度,外接制冷片和加热丝来达到控制温度的目的,让温度控制在自己设置的温度范围内
- 2023-02-15 00:25:05下载
- 积分:1
-
C#读取数据库内容并在dataGridView中显示
C#从数据库中读取内容并显示在dataGridView中,这似乎是一个很实用的功能,在数据库应用的时候,我们都要通过dataGridView来显示数据,这个例子可帮助初学者很好的掌握此功能的具体实现,一些代码片段分享如下:
private void button1_Click(object sender, EventArgs e)
{
//实例化SqlConnection变量conn,连接数据库
conn = new SqlConnection("server=.;database=db_15;uid=sa;pwd=");
//实例化SqlDataAdapter对象
SqlDataAdapter sda = new SqlDataAdapter("select * from tb_emp", conn);
DataSet ds = new DataSet(); //实例化DataSet对象
sda.Fill(ds);//使用SqlDataAdapter对象的Fill方法填充DataSet
dataGridView1.DataSource = ds.Tables[0];//设置dataGridView1控件的数据源
dataGridView1.RowHeadersVisible = false;//禁止显示行标题
//使用for循环设置控件的列宽
for (int i = 0; i < dataGridView1.ColumnCount; i++)
{
dataGridView1.Columns[i].Width = 84;
}
button1.Enabled = false;//禁用按钮
dataGridView1.Columns[0].ReadOnly = true;//将控件设置为只读
}
private DataTable dbconn(string strSql)//建立一个DataTable类型的方法
{
this.adapter = new SqlDataAdapter(strSql, conn);//实例化SqlDataAdapter对
- 2022-07-24 21:44:03下载
- 积分:1
-
agc
数据自动增益控制程序,可用于地震数据的增益处理。(AGC program data can be used for the gain of the processing of the seismic data.)
- 2013-02-28 19:59:08下载
- 积分:1
-
mvb
列车MVB网络开发的C程序,对于初学者了解列车网络通讯,为进一步开发列车网络控制系统具有借鉴。(it is a C program about vehicle mvb network)
- 2021-01-03 16:48:55下载
- 积分:1
-
GetSystemVer
Windows下获取操作系统版本信息的小程序(Windows operating system version information under the access of small procedures)
- 2009-02-06 12:01:21下载
- 积分:1
-
STM32-ENC28J60DEMO-V3
STM32 网口通信STM32-ENC28J60DEMO-V3(STM32 Ethernet port communication STM32-ENC28J60DEMO-V3)
- 2014-02-28 10:04:49下载
- 积分:1
-
asp.net web api json 循环引用问题
Loop Reference handling in Web API
- 2015-07-01下载
- 积分:1