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;