字典:
后期綁定: Set dic = CreateObject("scripting.dictionary")
前期綁定: Microsoft Scripting Runtime
Outlook:
后期綁定: Set objol = CreateObject("Outlook.Application")
前期綁定: Microsoft Outlook [version number] Object Library
FSO(FileSystemObject):
后期綁定:Set MyFile = CreateObject("Scripting.FileSystemObject")
前期綁定: Microsoft Scripting Runtime
正則表達:
前期綁定: 引用Microsoft VBScript Regular Expressions 5.5類庫,然后直接定義對象:Dim reg As New RegExp。
后期綁定: 使用CreateObject方法定義對象:CreateObject("VBSCRIPT.REGEXP")。
目前經常用就這么三個,后續有用到繼續補充.