字典:

后期绑定: 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")。

 

目前经常用就这么三个,后续有用到继续补充.

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-17
  • 2022-12-23
  • 2021-08-02
  • 2022-12-23
  • 2021-05-24
  • 2021-12-13
猜你喜欢
  • 2022-12-23
  • 2022-01-26
  • 2021-12-01
  • 2021-07-07
  • 2021-09-03
  • 2022-12-23
相关资源
相似解决方案