-
DS18B20
芯片SD18B20的中文资料说明。解压即可(The Chinese information on the chip SD18B20. Decompression can)
- 2013-12-26 13:09:18下载
- 积分:1
-
C# 获取DataGridView鼠标单击单元格值
C# 单击 鼠标获取DataGridView单元格的值,这个例子需要连接SQL数据库,测试时候没连接成功,截图也不准确,请大家下载源码,自己配置环境调试吧,这是核心代码部分:
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{//获取DataGridView鼠标单击单元格值
var MyInfo = this.dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
MessageBox.Show("刚才的选择是:" + MyInfo, "信息提示", MessageBoxButtons.OK);
}
private void dataGridView1_MouseUp(object sender, MouseEventArgs e)
{//单击鼠标获取DataGridView单元格值
var MyHit = this.dataGridView1.HitTest(e.X, e.Y);
if (MyHit.RowIndex >= 0)
{
this.dataGridView1.Select();
var MyInfo = this.dataGridView1.Rows[MyHit.RowIndex].Cells[MyHit.ColumnIndex].Value.ToString();
MessageBox.Show("刚才的选择是:" + MyInfo, "信息提示", MessageBoxButtons.OK);
}
}
- 2022-07-18 18:54:50下载
- 积分:1
-
VideoGrabber
Simple bare bones DLL to enumerate video capture devices, and capture into a buffer on a seperate thread. A program can link to this DLL, begin video capture, and pull from the 30 frames / second buffer at any frequency and get full RGB frames to then save to disk, encode, etc.(Simple bare bones DLL to enumerate video capture devices, and capture into a buffer on a seperate thread. A program can link to this DLL, begin video capture, and pull from the 30 frames/second buffer at any frequency and get full RGB frames to then save to disk, encode, etc.)
- 2009-07-07 09:19:40下载
- 积分:1
-
20050906Hide
说明: 本程序能关机,重启,注销,锁定,隐藏任务栏的功能.(shutdown and restart, canceled, lock, hide task bar function.)
- 2005-09-06 22:46:02下载
- 积分:1
-
基于51单片机的水温控制系统
51单片机控制加热器,维持水温,显示温度
- 2022-05-16 11:50:50下载
- 积分:1
-
51单片机fat文件系统程序,oled显示,外部flash刷入字库
stc12系类51单片机,郑南fat文件系统,可读取sd卡内的文件,驱动oled显示屏和外部flash字库
- 2023-08-27 10:50:04下载
- 积分:1
-
gdb源码
完整的gdb源码,值得阅读。可以在linux下编译通过。没办法,实在没有积分了,大家帮忙帮忙。
完整的gdb源码,值得阅读。可以在linux下编译通过。没办法,实在没有积分了,大家帮忙帮忙。
完整的gdb源码,值得阅读。可以在linux下编译通过。没办法,实在没有积分了,大家帮忙帮忙。
完整的gdb源码,值得阅读。可以在linux下编译通过。没办法,实在没有积分了,大家帮忙帮忙。
- 2022-01-26 07:56:08下载
- 积分:1
-
QuickCam
实现对图像的经验模态分解,得到经验模态分解后的第一层IMF分量,反映了图像的主要信息,去除冗余信息,为识别提供了基础。(Empirical mode decomposition of image, obtain the empirical mode decomposition of the first layer of IMF component, reflected the main information of the image, to remove redundant information, provide the basis for identification.
)
- 2014-01-20 14:16:39下载
- 积分:1
-
C++设计新思维
说明: C++ 设计新思维 PDF,范型编程与程序设计之应用权威指导书籍。由侯捷 / 於春景合译。(C ++ Design New Thinking PDF, the authoritative guide book for the application of paradigm programming and programming. Translated by Hou Jie / Yu Chunjing.)
- 2020-04-14 09:44:41下载
- 积分:1
-
uCOS-III 应用开发指南—F429
说明: uCOS-III 应用开发指南—F429,详细实用,可以从零开始学习。(UCOS-III Application Development Guide-F429, detailed and practical, you can learn from scratch.)
- 2019-06-10 17:01:05下载
- 积分:1