VB6 - 从外部程序列表视图中选择所有项目

发布于 2024-11-15 15:24:53 字数 212 浏览 5 评论 0原文

我必须从外部程序列表视图控件中选择所有项目。 有谁知道我怎样才能做到这一点? 我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蒗幽 2024-11-22 15:24:53

您需要使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文