摘要:
教程地址:https://www.runoob.com/vbscript/vbscript-tutorial.html Dim name Function test1() MsgBox "lalal" test1 = 1 End Function name=test1() MsgBox name 以 阅读全文
摘要:
运行时提示“The test run cannot continue due to a syntax error”调用过程sub时不能使用括号 解决方法:使用call调用 一般情况下,这种错误出现在调用的过程没有返回值的情况。应该来说,就是调用参数赋值错误。出现这种错误,使用CALL 就是可以解决的 阅读全文