-
expert
说明: C#简单专家系统,建立知识库,设计推理机(C# expert Visual Studio 2005)
- 2011-03-07 13:11:55下载
- 积分:1
-
STM32入门教程
该资料包含目前热门的stm32的hal库学习资料(This information contains the current popular stan library learning materials for stm32.)
- 2019-04-11 17:56:16下载
- 积分:1
-
[Visual.C.Turbo.C
C#串口编程,介绍很详细,希望对大家有帮助(C# serial)
- 2014-07-06 14:33:23下载
- 积分:1
-
vc-driven-camera-capture-images
该文档的主要功能就是利用vc编写一段代码实现摄像头采集图像。(The main function of the document is vc write a piece of code to achieve the camera capture images.)
- 2013-04-02 10:43:48下载
- 积分:1
-
RawSocModelfinal
用于分析数据包ip中信息的简单C++程序,大学课设使用(Use the online template
A Simple C++ Program for Analyzing Information in Packet IP, Used in University Course Settings)
- 2019-07-04 22:39:28下载
- 积分:1
-
M个人围成一圈,从第一个人开始报数,数到N的人出圈。再由下一个人开始报数,数到N的人出圈...输出依次出圈的编号。M值预先选定,N值由键盘输入。...
M个人围成一圈,从第一个人开始报数,数到N的人出圈。再由下一个人开始报数,数到N的人出圈...输出依次出圈的编号。M值预先选定,N值由键盘输入。 -personal cordons started from the first few reported that the number of people out of N circle. By the next few individuals reportedly began, a few people to the N output up lap ... followed up lap numbers. Value of pre-selected M, N values from the keyboard input.
- 2022-07-13 16:42:00下载
- 积分: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
-
车牌bmp文件读取与字符分割、归一化
说明: VC++.NET车牌识别、字符分割与归一化处理,图像对象BMP格式,程序将读取车牌的图像信息,归一化图像大小,动态分配存储图片的像素信息的二维数组,找到图像各列,从左列开始,垂直扫描,实施图片局部分割等,有兴趣编写车牌号识别的可参考对比下。(VC ++. NET license plate recognition, character segmentation and normalization processing, image object BMP format, the program will read the license plate image information, normalize the image size, dynamically allocate a two-dimensional array of pixel information to store the picture, and find the image columns , Starting from the left column, vertical scanning, partial image segmentation, etc. If you are interested in writing the license plate number recognition, please refer to the comparison.)
- 2020-03-23 22:28:07下载
- 积分:1
-
FiniteElementMethod
有限元方法与C程序设计
介绍有限元方法原理和如何设计C程序,书后有相关代码。(Finite element method with the C programming)
- 2010-01-01 16:10:54下载
- 积分:1
-
testpthread
pthread实现二路归并算法的并行化。对1000000个随机生成的0-99之间的数字进行排序。(Pthread implementation of the two way merge algorithm. Sorting the numbers between 1000000 randomly generated 0-99.
)
- 2015-07-06 20:09:56下载
- 积分:1