Inserting Picture into Word

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

Subject: Inserting Picture into Word

something like : selection.inlineshapes.addpicture.filename=“c://a.gif” ,you can record a macro in Word,see the code.

Subject: RE: Inserting Picture into Word

Thank you.

Found the syntax:

call word.ActiveDocument.Shapes.addpicture (“c://bgtile.gif”, False, True)

However, how can I position the picture?

LIke I want it to display at the bottom of the page rather than in the beginning?

Any idea?