View Single Post
 
Old 12-05-2013, 06:05 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

It works for me. Do note, though, that if your Word document contains a Document_Open macro, for example, and that requires any user interaction, its interface will only be seen once you switch windows to the Word application. For example:
Code:
Dim wdObj As Object, wdDoc As Object
Set wdObj = CreateObject("Word.Application")
wdObj.Visible = True
wdObj.Activate
Set wdDoc = wdObj.Documents.Open(Webtarget)
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote