-
BMPcase
可以隐藏信息和读取。用LSB算法的。代码长度不长。VC++环境下(to hide information and read. LSB algorithm used. Code length is not long. VC environment)
- 2021-04-02 00:09:07下载
- 积分:1
-
TextToDbf
将.list后缀(地质学中常用的一种格式)的纯文本文件转换成dbf格式的vf数据库文件。
采用超线程技术,对于大尺寸的文件操作不会使界面卡死,稍作修改可成为通用的文本文件导入数据库的程序。(Will. List suffix (geology used in a format), plain text file into dbf format database file vf. The use of Hyper-Threading Technology for the large size of the file operations interface card does not die, with some slight modifications can be a text file to import generic database procedures.)
- 2007-08-07 14:01:51下载
- 积分:1
-
L8Floodgate
基于MFC的上海地铁监控系统屏蔽门ActiveX控件(MFC-based control system of Shanghai subway PSD ActiveX Controls)
- 2010-03-12 11:12:13下载
- 积分:1
-
PictureCompressor
This is a program that will compress image files on your hardrive. It can recurse the directories and also create backups if needed.
- 2009-07-17 00:39:40下载
- 积分:1
-
duohePPT
说明: 有关多核运算的PPT资料,多核程序设计及多核技术导论(PPT information about multi-core computing, multi-core programming and multi-core technology, Introduction to)
- 2010-03-22 16:19:32下载
- 积分:1
-
HW-550+551
说明: Temperature sensor files, including several routines and driver files
- 2020-06-22 14:00:02下载
- 积分:1
-
sparse.c
Sparse matrix storage and computing
- 2014-12-18 15:36:06下载
- 积分:1
-
AT12864
12864驱动程序(51串行)已通过检测,用时注意端口的定义(12864 Driver (51 serial))
- 2021-01-20 11:38:41下载
- 积分:1
-
siggraph2011RPBFA
一篇三维人脸重建的最新论文,被siggraph2011接收(A three-dimensional face model to do the latest papers received by siggraph2011)
- 2011-10-25 18:18:36下载
- 积分: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