-
yibiaogauge
说明: 钟表仪器界面源码开发语言Visual C++ 2003.NET(clock like instrument GUI)
- 2009-08-21 22:10:05下载
- 积分:1
-
cpu_move
CPU 电子漂移知识,图解准确,耐人寻味(CPU electronic drift of knowledge, diagrams accurate, thought-provoking)
- 2009-09-06 23:15:48下载
- 积分:1
-
mpu6050
MSP430 角度传感器MPU6050程序_ccs(MSP430 angle sensor MPU6050 program _ccs)
- 2020-10-12 00:17:32下载
- 积分:1
-
经典字库算法源码
在基于单片机设计的应用用,如果需要带显示并且需要显示汉字,如果所显示的汉字不固定,可能是GBK中的任何一个字符,而且有不同字体大小的需求,这样的话,需要预先把不同的字库存到外部的Flash。还有另一种情况,需要显示的汉字是固定,而且量不是很大,两三百个以内,本源码是针对这一种情况的使用,能让你快速实现要显示的汉字字符,方便维护,方便更换。
- 2022-01-28 02:16:57下载
- 积分:1
-
library
纯C语言编程的模拟现有图书馆的借阅、续借、归还;图书入库、出库;查询、排序等功能,实现电子图书馆的智慧综合管理。其中查询功能里面嵌套精确查询,排序功能有六种,界面可变色,里面已经附带50多本图书信息包括图书摘要等详细信息。里面还附带详细设计报告和解说PPt。(Pure C language programming simulation existing library borrow, renew, return book storage, a library queries, sorting and other functions, to achieve integrated management of electronic library wisdom. Precisely where the query function inside a nested query, sort function has six, the interface can change color, which has included more than 50 books including books summary information and other details. Which also included detailed design reports and commentary PPt.)
- 2020-10-30 14:59:57下载
- 积分:1
-
ss-agp1
Signals and Systems. Winter 09
- 2012-01-31 16:16:50下载
- 积分:1
-
AddMatrix
用三元组表为结构,实现稀疏矩阵的加法并输出。(Achieve sparse matrix addition)
- 2014-02-19 19:59:00下载
- 积分:1
-
emitter版本
说明: 机器人三维建模仿真应用,webots建模仿真软件,跟随小车模型加程序(Application of Robot Three-Dimensional Modeling and Simulation)
- 2020-06-23 20:40:01下载
- 积分:1
-
UWB-Project
说明: UWB-Project,官方资料及编程文件(UWB-Project,BPHero_UWB_Location_SourceCode_V1.1_16MHz_V1.3)
- 2020-10-19 11:30:53下载
- 积分:1
-
C# 通过SqlReader HasRows判断指定表中是否有数据
本例主要是判断指定的数据库数据表中是否有数据,这里使用了通过判断HasRows的返回值来判断,若返回值为真,则有数据,反之则无数据,最后用MessageBox.Show显示判断结果,完整的过程:
//实例化SqlConnection变量conn
SqlConnection conn = new SqlConnection("server=.;database=db_14;uid=sa;pwd=");
conn.Open();//打开连接
//创建一个SqlCommand对象
SqlCommand cmd = new SqlCommand("select * from " + textBox1.Text.Trim(), conn);
//使用ExecuteReade方法创建SqlDataReader对象
SqlDataReader sdr = cmd.ExecuteReader();
sdr.Read();//调用Read方法读取SqlDataReade
if (sdr.HasRows)//使用HasRows属性判断结果中是否有数据
{
MessageBox.Show("数据表中有值");//弹出提示信息
}
else
{
MessageBox.Show("数据表中没有任何数据");
}
- 2022-02-07 01:03:03下载
- 积分:1