C#跨进程读取listview控件中的数据

http://www.cnblogs.com/Charltsing/p/slv32.html

欢迎交流:QQ564955427

读取标准的32位listview控件中的数据,网上已经有很多代码了。今天有空也做了个测试。读取TcpEye软件中的数据。

具体见程序附件。  下载(本程序可以自己修改主窗体类名和子窗体类名,抓取其他的软件数据。当然,窗体层次必须是2层,而且不能有多个同类名的子窗体,因为这只是个示例程序)

***************************************************************

如果程序要自适应32位和64位的系统,代码还是需要做一下调整,因为两者数据格式貌似不一致

下面有个C++的定义,网上找的,留个备份

typedef struct {
UINT mask;
int iItem;
int iSubItem;
UINT state;
UINT stateMask;

int placeholder1;
LPTSTR pszText;
int placeholder11;

int cchTextMax;
int iImage;

LPARAM lParam;
int placeholder2;

#if (_WIN32_IE >= 0x0300)
int iIndent;
#endif

#if (_WIN32_WINNT >= 0x0501)
int iGroupId;

UINT cColumns;
int placeholder3;

UINT puColumns;
int placeholder4;
#endif

#if (_WIN32_WINNT >= 0x0600)
int piColFmt;
int placeholder5;

int iGroup;
int placeholder6;
#endif
} LVITEM64, *LPLVITEM64;

时间: 2024-10-10 07:11:27

C#跨进程读取listview控件中的数据的相关文章

使ListView控件中的选择项高亮显示

实现效果: 知识运用: ListView控件的SelectedItems属性 //获取在ListView控件中被选中数据项的集合 public ListView.SelectedListViewItemCollection SelectedItems{get;} 和ListViewItem数据项的BackColor属性 //获取或设置该数据项的背景色 public Color BackColor{get;set;} 实现代码: private void select_flash_Load(obj

机房收费系统之vb中的MSFlexGrid控件中的数据导出为Excel的步骤

MSFlexGrid控件中的数据导出为Excel表格的方法有很多,我觉得它们都大同小异,总起来说就是vb先调用Excel,然后再将数据导入进去.在数据导出的过程中,我的收获如下,下面是我把MSFlexGrid控件的数据导出到Excel中的步骤. 1 首先确保 在工程中引用Microsoft Excel 14.0 Object Library   和  Microsoft ActiveX Data Objects 2.6 Libray 代码部分, <span style="font-size

如何在各类控件中输入输出数据

如何在各类控件中输入输出数据 一.        ComboBox控件: 1.如图所示方法向ComboBox控件中添加下拉列表选项: 2.运用代码选择下拉框文本 if (comboBOx1.Text == "学号查询" ){ sql1 += " where StudentNo like  '%" + txtSearch.Text.Trim() + "%'"; sql = sql1;} else if (comboBOx1.Text == &quo

C#在listview控件中显示数据库数据

一.了解listview控件的属性 view:设置为details columns:设置列 items:设置行 1.将listview的view设置为details 2.设置列属性 点击添加,添加一列 设置一列的Text属性,这就是列名 添加三列 3.编辑items属性,添加一行数据 编辑Text属性,添加一行的第一个数据 编辑subitems属性,添加一行中的其他数据 添加两个数据 填写结果 二.在listview中显示数据库数据 //在listview中显示数据库数据 private voi

对ListBox控件中的数据进行排序

实现效果: 知识运用: ListBox控件的Sorted属性 //ListBox控件中的数据项是否按字母顺序排序 public bool Sorted{get;set;} 实现代码: private void button1_Click(object sender, EventArgs e) { listBox1.Sorted=true; } 原文地址:https://www.cnblogs.com/feiyucha/p/10159855.html

在DataGridView控件中验证数据输入

实现效果: 知识运用: DataGridView控件的公共事件CellValidating //将System.Windows.Forms.DataGridViewCellValidatingEventArgs类的Cancel属性设为true  将阻止光标离开单元格 和CellEndEdit来处理 实现代码: private void dataGridView1_CellValidating(object sender, DataGridViewCellValidatingEventArgs e

在DataGridView控件中设置数据显示格式

实现效果: 知识运用: DataGridViewCellStyle类的Format属性 //获取或设置应用于DataGridView单元格的文本内容的格式字符串 public string Format {  get;set;  } // 通过设置控件的列的DefaultCellStyle.Format属性 实现代码: private void Form1_Load(object sender, EventArgs e) { dataGridView1.DataSource = new List

循环遍历listview 控件中Subitems 值

I was wanting to be able to iterate through each of my ListViews sub items and get the value from each. I have tried various things but am finding it really difficult to just get the sub item text from the second column, not the items text from the f

C# listview控件右击导出数据到txt文本

private void 导出成功点击ToolStripMenuItem_Click(object sender, EventArgs e) { if (listCount.Items.Count == 0) { MessageBox.Show("列表为空!"); } else { List<string> list = new List<string>(); foreach (ListViewItem item in listCount.Items) { st