Trying to replace a picture/shape in one spreadsheet with one in another.
'loop through all images
For Each s In wbk.Sheets(1).Shapes
s.picture = loadpicture(ThisWorkbook.Sheets(1).Shapes("Picture 1").Picture)
Next
It fails on the red line: Object doesn't support this property or method. I...