我想让我的vbs程序使用命令来请求用户输入
Sl = InputBox("type something")
然后我需要稍后将用户输入写下来,例如
WshShell.SendKeys ("www.")
WScript.Sleep 200
WshShell.SendKeys ("{&Sl}")
WScript.Sleep 200
WshShell.SendKeys (".com")
但是我无法正常工作
这是我使用的完整代码:
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 1000
test = InputBox("noget")
WshShell.SendKeys("^{Esc}")
WScript.Sleep 1000
WshShell.SendKeys ("" & test & "")
WScript.Sleep 200