而且help中也说了:
ExecuteFile Statement
Description
Executes the VBScript statements in the specified file. Once the file runs, the the definitions (functions, subroutines, classes, etc.) in the file are available from the global scope of the action's script.作者: michaelyung 时间: 2006-4-26 18:53
而且我之前读的项目代码中,在所调用的executefile中定义了一些function,并没有执行一些operation
所以我觉得不应该是这个原因。
如果是这个原因,那test.vbs应该怎么改成可执行的呢
举一个简单的例子吧
多谢:)作者: pldy 时间: 2006-4-27 09:44
我执行了一下,是可以通过的.
先跳出"hehe"
后跳出"in the test.vbs"作者: Horus_Ra 时间: 2006-4-27 16:30
你在test.vbs里写上:
Public Function JustTest()
Dim strMsg
strMsg="in the test.vbs"
MsgBox strMsg
End Function