xlApp.activesheet.Pictures.Insert(strImagePath) inserts pictures into a spreadsheet as a linked picture. If I send the spreadsheet out of our network the images fail.
xlApp.activesheet.Pictures.Insert(strImagePath)
How can I place an image as an embedded image?
I am also calling this method from Access.
you can use the shapes.addpicture method
activesheet.Shapes.AddPicture Filename:="C:estdesert.jpg", linktofile:=msoFalse, _ savewithdocument:=msoCTrue, Left:=0, Top:=0, Width:=100, Height:=100
2.1m questions
2.1m answers
60 comments
57.0k users