All, Is there any way of embedding a webpage in a MS Word 2007 document, similar to having an iFrame object in the Word doc, with any changes to the underlying webpage being updated as appropriate?

Many thanks for any help on this

link|improve this question
feedback

migrated from stackoverflow.com Apr 21 '11 at 21:22

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 1 down vote accepted

This is the best info I was able to find, which states that you can either write a VBA macro:

Sub Macro1() 
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, 
Text:="INCLUDETEXT ""HardDriveName:FileName.htm""", PreserveFormatting:=True 
End Sub

or (in Word 2007), go to Insert->Quick Parts->Field... then under "Field Names" choose "Include Text", state the URL, and press OK. This does not look very good, however, since I believe that Word is not really built for embedding web pages.

link|improve this answer
Thanks- I feared this was the case. Arguably word isnt 'built for' such purposes so I guess this makes sense- c'est la vie! – Ergo Summary Apr 27 '11 at 9:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.