PDA

Click to See Complete Forum and Search --> : Select MS Word Object Library in project


Clunietp
Jan 8th, 2000, 01:01 AM
Word.Basic will always reference the latest version of MS Word. It also appears that the two interfaces are binary compatible because they both have the same Class IDs.
(I only have Word 2000 on my system, but Word.Basic, Word.Basic.8 and Word.Basic.9 have the same CLSIDs, plus microsoft knows that it is important to have binary compatibility)

Anything you implement using Word 97 should work fine with Word 2000.

JohnL55
Jan 8th, 2000, 11:03 AM
Dim objWord As Object
Set objWord = CreateObject("Word.Basic")
The above works for Word7

What about Word97?
What about Word2000

Thanks, this is a great way to help one another out.