View Full Version : Object Library


MrMitch
11-26-2007, 11:58 AM
Hi,

I'm using a module that uses the Microsoft Word and Excel 12.0 Object Library, however I have some users that have Office 10 and 11 and I am not sure how to reference those libraries for them. Is there a way to load those into my database?

pbaldy
11-26-2007, 12:06 PM
When I'm not sure of user versions, I use late binding. Searching here on that should turn up the code differences involved.

boblarson
11-26-2007, 12:12 PM
As MVP Crystal Long has said, "use early binding for development and late binding for production."

MrMitch
11-26-2007, 02:13 PM
Perfect, got it. Thanks!