我一直在尝试使用VBScript学习Web Scraping,因为VBA for Outlook不像VBA for Excel那样工作
所以我试图显示一个消息框,看看我的脚本是否到达特定点。我可以显示第一个消息框但不显示第二个消息框。我知道这是由于行wscript.quit
,但我需要该行,否则我无法打开IE。
Msgbox ("hello"),0,("title")
set Shell = createobject("wscript.shell")
Shell.Run "google.ca"
wscript.quit
DIM IE
Set IE = CreateObject("IExplorer.exe")
Msgbox ("hello"),0,("title")
感谢所有帮助,谢谢。