View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Zoner Zoner is offline
external usenet poster
 
Posts: 3
Default 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