|
Be the first user to complete this post
|
Add to List |
VBA-Excel: Open word document using GetObject()
Open word document using GetObject(), you need to follow the steps below:
- Get the reference to existing word file using GetObject
- Get the object of Microsoft Word application object
- Make the MS Word visible
Get the reference to existing word file using GetObject
Set objDoc = GetObject ("D:\OpenMe.docx")
Get the object of Microsoft Word application object
Set objWord = objDoc.Application
Make the MS Word visible
objWord.Visible = True
Function FnOpenWordDoc()
Set objDoc = GetObject ("D:\OpenMe.docx")
Set objWord = objDoc.Application
objWord.Visible = True
End Function
Also Read:
- VBA-Excel — AttachmentFetcher — Download all the Attachments from All the Mails of Specific Subject in Microsoft Outlook .
- Send Mail With Link to a Workbook, From MS Outlook using Excel.
- VBA-Excel: Perform Google Search on Internet Explorer using Microsoft Excel
- VBA-Excel: Login To Already Opened GMAIL In An Internet Explorer (IE)
- Excel-VBA : Send a Simple Mail From MS Outlook Using Excel