VB6 - 从外部程序列表视图中选择所有项目
我必须从外部程序列表视图控件中选择所有项目。 有谁知道我怎样才能做到这一点? 我尝试使用 SendCommand,但失败了。
在 AutoIt 中我可以这样做:
ControlListView("Title", "", "[CLASS:SysListView32; INSTANCE:1]", "Selectall")
谢谢!
I have to select all items from an external program Listview control.
Does anybody know how can I accomplish this?
I tried with SendCommand, but failed.
In AutoIt I can do it this way:
ControlListView("Title", "", "[CLASS:SysListView32; INSTANCE:1]", "Selectall")
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 Win32
SendMessage
API。这里有一个具体的示例。
当然,您必须找到该控件的窗口句柄,前提是您知道类和窗口名称(您可以使用 Spy++) 你也许可以用
FindWindowEx
。You'll need to send a message to the control using with Win32
SendMessage
API.There is an example of exactly this right here.
You will of course have to find the window handle of the control, provided you know the class and window name (which you can find with Spy++) you can probably do it with
FindWindowEx
.