-
scriptdriverbook
脚本驱动的应用软件开发方法与实践,界面设计的非常好的一本书。(Script-driven application development methods and practices, interface design of a very good book.)
- 2009-06-04 17:07:16下载
- 积分:1
-
skin
PIC16F684程序按键识别. 中断方式识别(KEY PROGRAM)
- 2010-05-12 14:58:59下载
- 积分:1
-
67506281TaiWanFont
很多TFT都带有字库,直接调用函数就可以显示字库里面的内容,这个就是一个字库集,需要的朋友看一下(TFT comes with a lot of fonts, you can directly call the function displays the contents of the font inside, this is a character set, need to look at a friend)
- 2009-11-17 15:36:13下载
- 积分:1
-
visual_c_plus_plus_net
visual C++ .NET 开发精典实例 , PDF书(visual C++. NET development classics examples, PDF Book)
- 2010-01-04 21:35:23下载
- 积分:1
-
opencv
高通410c 安卓系统的 opencv源代码(Qualcomm Snapdragon 410E (APQ8016E) Processor android system source code about opencv)
- 2020-06-20 05:00:01下载
- 积分:1
-
tiny6410的SD卡MP3播放器系统
非常好用的linux资源,是关于tiny6410的SD卡MP3播放器系统方面的,大家相互学习哈,加油!和大家共勉!正好学习嵌入式,关于tiny6410的,大家有什么问题,可以一起交流下,共同加油!
- 2022-03-24 23:18:29下载
- 积分:1
-
EarthEx
Win32写的一个地球仪模型,模型为地球自转和卫星环绕地球旋转(a model of blobe in Win32)
- 2012-09-15 10:58:45下载
- 积分:1
-
code-for-face-detection
Lets see how to detect face, nose, mouth and eyes using the MATLAB built-in class and function. Based on Viola-Jones face detection algorithm, the computer vision system toolbox contains vision.CascadeObjectDetector System object which detects objects based on above mentioned algorithm.
- 2014-03-26 18:27:47下载
- 积分:1
-
铱星SBD9602驱动代码
铱星模块sbd9602驱动,驱动提供卫星短报文收发功能;硬件平台为stm32l151;使用st的固件库进行驱动开发;
- 2022-02-05 19:46:10下载
- 积分:1
-
C# 显示DataGridView控件中选定的单元格、行和列
Visual C#显示选择的DataGridView单元格,获取DataGridView控件中选定的单元格、行和列,测试前请连接好数据库,实现此功能核心代码如下:
if (customersDataGridView.AreAllCellsSelected(true))
{
MessageBox.Show("所有单元格已经被选择!", "信息提示",MessageBoxButtons.OK);
}
else
{
System.Text.StringBuilder MyInfo =new System.Text.StringBuilder();
for (int i = 0;
i < MyCount; i++)
{
MyInfo.Append("行号: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].RowIndex.ToString());
MyInfo.Append(", 列号: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].ColumnIndex.ToString());
MyInfo.Append(", 单元格值: ");
MyInfo.Append(customersDataGridView.SelectedCells[i].Value.ToString());
MyInfo.Append(Environment.NewLine);
}
MyInfo.Append("一共选择了: " + MyCount.ToString()+"个单元格");
MessageBox.Show(MyInfo.ToString(), "信息提示", MessageBoxButtons.OK);
}
- 2022-03-18 13:11:05下载
- 积分:1