在 Visual Studio 6 的宏中,我想运行一个外部程序,所以我输入:
shell("p4 open " + ActiveDocument.FullName)
这给了我一个类型不匹配的运行时错误。我最终不得不输入的是:
Dim wshShell
Set wshShell = CreateObject("WScript.Shell")
strResult = wshShell.Run("p4 open " + ActiveDocument.FullName)
这里发生了什么?这种废话真的有必要还是我错过了什么?