ShowSaveAsDialog
我需要在 VB.2010 webbrowser 控件出现期间使用 sendkeys 。但它似乎不起作用,因为它在激活之前首先等待对话框关闭。
这是我的代码:
WebBrowser1.ShowSaveAsDialog()
Timer1.Enabled = True
*在定时器事件中
SendKeys.Send("AAAAAA")<br>
SendKeys.Send("{TAB}")<br>
SendKeys.Send("{TAB}")<br>
SendKeys.Send("{ENTER}")<br>
Timer1.Enabled = False
我需要将“AAAAAAA”发送到文件名,但它不起作用......