Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

transform .htm to .doc(by means of jacob library)

807569Jul 10 2006 — edited Jul 10 2006
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 7 2006
Added on Jul 10 2006
5 comments
244 views