View Single Post
 
Old 11-21-2014, 10:56 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

The images are converted to links to the original images, links which cannot be viewed in Word 2013, so you need a two step process.

First save as Word 97-2003 DOC format (in a folder other than that containing the HTML files), then run the following macro to unlink the images:

Code:
Sub UnlinkImages()
Dim ofld As Field
    For Each ofld In ActiveDocument.Fields
        ofld.Unlink
    Next ofld
End Sub
Then finally save as DOCX with the images embedded.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote