I want to transform .htm document, which contain also images data to microsoft word document e.t. .doc.
After I call "SaveAs" action on opened document and created .doc file, images direcory which(files(images) from which linked inline must be deleted.
Please tell me how I can organize following VBA code part by means of jacob library to store all images data with word document file .doc
Dim pic As InlineShape
For Each pic In ActiveDocument.InlineShapes
If pic.Type = wdInlineShapeLinkedPicture Then
pic.LinkFormat.SavePictureWithDocument = True
End If
Next