为什么 _GUICtrlListView_ClickItem 不能与 Internet Explorer 文件上传对话框一起使用?

发布于 2024-11-15 08:10:11 字数 424 浏览 4 评论 0原文

好的,我一直在尝试找到一种方法来选择并单击进入文件夹,同时尝试选择通过 Internet Explorer 上传的文件。

我目前正在使用 ControlListView 选择一个文件夹,然后使用 ControlSend 按 {ENTER},因为“单击”没有任何工作功能 在

使用帮助文件夹中的示例时一切正常,但当我尝试使用该文件时上传窗口 (SysListView32) 开始关闭随机窗口。

示例代码:

_GUICtrlListView_ClickItem(1, 1, "left", False, 2)

自动窗口信息:

http://s3.postimage .org/84cezen72/2011_06_13_174651.png

ok, i have been trying to find a way to choose and click for entering a folder while trying to pick files for uploading through internet explorer.

i'm currently using ControlListView for selecting a folder and then pressing {ENTER} with ControlSend because of there isn't any working function for "Click"

Everything works fine when working with example in help folder but when i trying to work with that file upload window (SysListView32) starting to close random windows.

Example code:

_GUICtrlListView_ClickItem(1, 1, "left", False, 2)

autoit window info:

http://s3.postimage.org/84cezen72/2011_06_13_174651.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

灼痛 2024-11-22 08:10:11

我可以看到你做错了什么,但不完全确定如何简单地解决它。

问题是您使用此函数 _GUICtrlListView_ClickItem 的参数为:1, 1, "left", false, 2。而第一个参数 (1) 应该是控件的句柄。

您可以使用 ControlGetHandle 来获取控件的句柄。像这样的东西:

$hWnd = ControlGetHandle("somethinghere")
_GUICtrlListView_ClickItem($hWnd, 1, "left", false, 2)

I can see what you're doing wrong, but not entirely sure how to fix it simply.

The problem is that you use this function _GUICtrlListView_ClickItem with parameters: 1, 1, "left", false, 2. While the first parameter (1) should be a handle to the control.

You can use ControlGetHandle to obtain a handle to the control. Something like:

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