This ought to be easy. If the answer is somewhere else, please tell me. I can open a Word application but not in a specific document. Thanks in Advance
I think this might be what you are looking for. This sub opens Word to a blank document.
***********
Sub OpenWordDoc()
Static WordObj As Word.Application
Set WordObj = Nothing
Set WordObj = CreateObject("Word.Application"
'WordObj.Documents.Open ("C:\My Documents\Test.doc" 'opens specific word doc if needed. just example
WordObj.Documents.Add 'opens blank word doc
'Enable viewing the Word session and its document
WordObj.Visible = True
End Sub Have A Great Day!!!,
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.