Quote:
Originally Posted by gmaxey
Yes, I understand it is late binding, but typically, with late binding I believe you have
to do something like:
Set vbProj = CreateObject(????????)
Where in this case we can user the object ThisDocument.VBProject without having a reference.
|
Late binding refers to the use of a variable typed as a generic object which is only bound at the Set statement, which is the case in your code.