为什么 _GUICtrlListView_ClickItem 不能与 Internet Explorer 文件上传对话框一起使用?
好的,我一直在尝试找到一种方法来选择并单击进入文件夹,同时尝试选择通过 Internet Explorer 上传的文件。
我目前正在使用 ControlListView 选择一个文件夹,然后使用 ControlSend 按 {ENTER},因为“单击”没有任何工作功能 在
使用帮助文件夹中的示例时一切正常,但当我尝试使用该文件时上传窗口 (SysListView32) 开始关闭随机窗口。
示例代码:
_GUICtrlListView_ClickItem(1, 1, "left", False, 2)
自动窗口信息:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以看到你做错了什么,但不完全确定如何简单地解决它。
问题是您使用此函数 _GUICtrlListView_ClickItem 的参数为:1, 1, "left", false, 2。而第一个参数 (1) 应该是控件的句柄。
您可以使用 ControlGetHandle 来获取控件的句柄。像这样的东西:
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: