我想将一个 VBscript 包含到另一个 VBscript 中(有点模拟 VBS 中的 OO),在网上找到了一些东西,对我来说似乎还可以。我不断收到“预期语句”错误ExecuteGlobal
:
Dim scriptLocation
Sub Main
scriptLocation ="script2.vbs"
Include(scriptLocation)
End Sub
Sub Include (strFile)
Dim fsObj : Set fsObj = CreateObject("Scripting.FileSystemObject")
Dim vbsFile : Set vbsFile = fsObj.OpenTextFile(strFile, 1, False)
Dim myFunctionsStr : myFunctionsStr = vbsFile.ReadAll
vbsFile.Close
Set vbsFile = Nothing
Set fsObj = Nothing
ExecuteGlobal myFunctionsStr
End Sub
有人知道吗?