Hi,
I am writing a script to generate word document from the information in notes document.
However, I will need to include an image into the word documetn as well.
Anyone has any idea on how to include that?
The image will be in the file system and not in the document.
My code:
Set word_app = CreateObject(“Word.Application”)
set curr_document = word_app.Documents.Open(template_path)
Call word_app.ActiveDocument.Paragraphs(ln).Range.InsertBefore(datetoday)
I need to include image here. How to do that? Anyone can help ?
Thanks.
Rgds,
Micki