Hello,
I am trying to add a picture at the end of a word document with automation. I use this:
docWord.content.inlineShapes.AddPicture "c:\test.jpg"
but the picture is put at the beginning of the document while I need to add it at the end of the document.
Thanks.
****************************************************
I change the range of the selection of the document:
Selection.Range = docWord.Range(docWord.Range.End -1, docWord.Range.End)
