mnokoko 当前离线
列兵
czjt1234 当前离线
少校
TOP
ShowCode 当前离线
VIP1
Dim fname fname = InputBox("Enter your name:") Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run "C:\Test\gogo.exe " & fname复制代码
dim fname, oWshShell Set oWshShell = CreateObject("WScript.Shell") fname = InputBox("Enter your name:") fname = """" & fname & """" oWshShell.Run "gogo.exe " & fname复制代码