Excel - how to prevent new office version from upgrading word obje
Remove the references and use this code to create your word application
object...
dim appWord as object
set appWord = createobject('Word.Application")
Thanks!
I have this working for Word.Application but can not seem to use the
same method to replace:
Dim wRng As Word.Range
With:
Dim wRng As Object
Set wRng = CreateObject("Word.Range")
- I get an error on the Set wRng saying it can not create the object.
Should this work? I am also using Word.Table, so suspect I will get the
same error there.
Thanks again.
Matt
|