【发布时间】:2018-10-27 00:15:58
【问题描述】:
如果两者之间有区别,请给我解释一下
Set objIE = CreateObject("internetexplorer.application")
和
Set objIE = New InternetExplorer
【问题讨论】:
如果两者之间有区别,请给我解释一下
Set objIE = CreateObject("internetexplorer.application")
和
Set objIE = New InternetExplorer
【问题讨论】:
第一个是后期绑定,第二个是早期绑定。早期绑定也需要在项目中引用,而后期绑定不需要。
【讨论】: