View Single Post
 
Old 12-22-2011, 03:51 AM
tinfanide tinfanide is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2011
Posts: 312
tinfanide is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
Hi tinfanide,

That's a by-product of using early binding. You have two options:
• delete the reference to the Word 14 from the vba editor and use late binding;
Do you mean untick "Microsoft Word Object Library 14.0"?

How about late binding?

In my codes:

Code:
Dim wrdApp As Object
Set wrdApp = CreateObject("Word.Application")
But when I do this, in Excel 2007 it said "error when loading DLL" or something like this and in the reference it said "missing MS Word Object Library 14.0"
Reply With Quote