Does anybody know how to insert a picture from a database to a bookmark in a Word Document using vb. ?
I know how to insert image by the path, like
Also, I Know how to bring the image from the database and store it on a RecordSet.
All I need to know is how may I insert this image into a word document?
Obs: The field that stores the image is LongBlob type.
I know how to insert image by the path, like
Code:
Word_App.Selection.InlineShapes.Add.Picutre FileName:="C:\Images\winter.jpg"
All I need to know is how may I insert this image into a word document?
Obs: The field that stores the image is LongBlob type.
Comment