扩展下说:所以我们可以抽象一些基本的操作,比如Mysql数据库的,XML,Excel,Html等常用操作,抽象出一些具有通用性质的.vbs,就像python和perl的module似的。。。作者: xiaoyaoke 时间: 2010-3-12 15:37 标题: VBS include() ' VBScript "Include" routine
Sub Include(sInstFile)
On Error Resume Next
Dim oFSO, f, s
Set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists(sInstFile) Then
Set f = oFSO.OpenTextFile(sInstFile)
s = f.ReadAll
f.Close
ExecuteGlobal s
End If