Using the InlineShapes method to insert an image in a Word document, as in: chShapes = chRange:InlineShapes. chShapes:AddPicture("C:\myfiles\logo.png"). That works fine. When I try to address the shape, however, I get "the requested member of the collection does not exist". Tried using: chShape = chShapes:ITEM(1). For some reason, chShapes:count returns zero, even though I successfully added the image to the document. Any help would be appreciated. Continue reading...