从列表中选择项目后,Autoit 不会生成调用的事件
我正在使用以下代码从列表中选择一个项目。
;Selects a particular Process from the combobox
_GUICtrlComboBox_SelectString($hQueueCombo, $q_index)
通常在选择后,它应该更新另一个框中的值,但它不会生成附加到该选择的事件。知道我在这里缺少什么吗?请指导
I am using the following code to select an item from list.
;Selects a particular Process from the combobox
_GUICtrlComboBox_SelectString($hQueueCombo, $q_index)
Usually after selection it should update the value in another box but it is not generating the event attached to this selection. Any Idea what I am missing here. Please guide
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过以下代码解决了问题。实际上我们还需要向窗口发送通知
希望它可以帮助别人
Solved the Problem by the following code. Actually we also need to send a notification to window
Hope it helps someone