-
用于Linux的STM8 Flash程序员
用于Linux的STM8 Flash程序员
- 2022-01-25 15:58:40下载
- 积分:1
-
VC
说明: 使用VC++调用Matlab程序,利用自带的Matlab引擎实现数据交换。(Using VC++ calling Matlab program, using the Matlab engine comes with data exchange.)
- 2010-12-02 10:15:39下载
- 积分:1
-
t6963-240128
T6963_COB_240X128点阵屏测试代码,T6963初始化测试程序,画圆,画线,画矩形。(T6963_COB_240X128 ,T6963 init)
- 2020-11-15 09:29:43下载
- 积分:1
-
APQP
产品质量先期策划控制程序的相关文件,适用APQP流程的TS16949体系(Advanced Product Quality Planning control procedures of the relevant documents, for APQP process TS16949 system)
- 2010-01-23 18:45:40下载
- 积分:1
-
基于STM32控制GPRS模块远程传输信息,通过动态域名
基于STM32控制GPRS模块远程传输信息,通过动态域名方式,也可以通过动态IP的方式。还可以收发短信进行控制
- 2023-01-26 10:10:03下载
- 积分:1
-
E0403
VC6.0完全自学手册 主编孔鹏 对话框与窗口操作源代码(VC6.0 dialog with the window operation code)
- 2013-10-26 19:01:57下载
- 积分:1
-
报表设计器(EastReport)
做报表设计,非常简单实用,ReportMachia
- 2019-08-20下载
- 积分:1
-
sift
SIFT,即尺度不变特征变换(Scale-invariant feature transform,SIFT),是用于图像处理领域的一种描述。这种描述具有尺度不变性,可在图像中检测出关键点,是一种局部特征描述子。 该方法于 1999 年由 David Lowe 首先发表于计算机视觉国际会议(International Conference on Computer Vision,ICCV),2004 年再次经 David Lowe 整理完善后发表于 International journal of computer vision(IJCV) 。截止 2014 年 8 月,该论文单篇被引次数达 25000 余次。(来自百度)(SIFT, namely Scale-invariant feature transform (SIFT), is a description used in the field of image processing. This description has scale invariance and can detect key points in images. It is a local feature descriptor. This method was first published by David Lowe at the International Conference on Computer Vision (ICCV) in 1999 and published in the International Journal of Computer Vision (IJCV) in 2004 after it was sorted out and perfected by David Lowe again. As of August 2014, more than 25,000 citations have been cited. (From Baidu))
- 2019-07-08 09:34:31下载
- 积分: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
-
SHUDU
求解数独游戏的一个非常好的源代码,很好很强大(a good source code for solving the game of sudoku)
- 2009-11-26 17:07:33下载
- 积分:1