-
fc_testIsenburg
对浮点型数据进行压缩,将数据分为3个部分:符号位、指数、尾数,分别对其进行压缩(Of floating-point type data compression, data is divided into three parts: sign bit, index, mantissa, respectively, to compress their)
- 2009-05-04 13:03:29下载
- 积分:1
-
power-flow-matlab
Matlab_powerflow 电力系统潮流计算直流方法 很简单 但是很实用 (Matlab powerflow of dc power system power flow calculation is simple,but very practical)
- 2014-11-06 09:47:22下载
- 积分: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
-
ZFT_Demo_2009-06-10
windows mobile 项目 很不错的,手持机执法同系统(windows mobile project is very good, with the system of law enforcement handhelds)
- 2010-11-11 23:38:49下载
- 积分:1
-
单片机C语言程序设计实训100例proteus
说明: 51单片机C语言学习,C语言来编写单片机程序。Proteus仿真。(51 MCU C language learning, C language to write MCU program. Proteus simulation.)
- 2019-05-13 02:27:00下载
- 积分:1
-
Queue
关于队列的实现,按照算法导论书上得来,简单易用。(On the implementation of the queue, according to the book Introduction to Algorithms, come on, easy to use.)
- 2010-12-15 20:52:52下载
- 积分:1
-
shellpaixu
希尔排序(Shell Sort)是插入排序的一种。是针对直接插入排序算法的改进(双语对照查看希尔排序(Shell Sort)是插入排序的一种。是针对直接插入排序算法的改进。
Hill sorting (Shell Sort) is a kind of insertion sort. Is to improve the direct insertion sort algorithm.
)
- 2013-07-18 15:11:39下载
- 积分:1
-
vad-master
说明: 调用webrtc中的VAD算法,可以实现录音文件的语音端点检测,时延7.8ms(Calling VAD algorithm in webrtc, voice endpoint detection of recording file can be realized with a delay of 7.8ms)
- 2020-03-19 10:20:48下载
- 积分:1
-
坐标转换源代码,C#适合GIS开发入门!
坐标转换源代码,C#适合GIS开发入门!
- 2022-02-28 10:34:15下载
- 积分:1
-
robut-control
this file contains a robust control project with report in word and mfiles
- 2013-07-26 16:21:55下载
- 积分:1