Can someone please explain to me if there is a difference between
Set objIE = CreateObject("internetexplorer.application")
and
Set objIE = New InternetExplorer
Can someone please explain to me if there is a difference between
Set objIE = CreateObject("internetexplorer.application")
and
Set objIE = New InternetExplorer
The first one is late binding, and the second one is early binding. Early binding also requires a reference in the project whereas late binding does not.