msoShapeRectangle background image as another shape object in the workbook

justin-uk

New Member
Joined
Dec 3, 2007
Messages
21
Hi,

I am creating a shape and want to use an image as its background. I have discovered the UserPicture attribute, but I suspect that can only refer to a file on an external filesystem. I want my spreadsheet to be totally portable.

Is it possible to set the shape background to be another object already in the workbook?

This works...

Set shp = ActiveSheet.Shapes.AddShape(msoShapeRectangle, _
0#, 0#, 54, 14)
shp.Fill.UserPicture "W:\Spreadsheets\background.bmp"

This doesn't work. Why?

Set shp = ActiveSheet.Shapes.AddShape(msoShapeRectangle, _
0#, 0#, 54, 14)
shp.Fill.UserPicture Sheets("Data").Shapes("Picture1")

Thanks,

Justin
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Shapes("Picture1") is refering to a Shape named Picture1, not a picture.

irillydunnonutink, but you can try this.

Code:
Shp.Fill.UserPicture = Shapes("Shape1").Duplicate 'Where Shape1 holds the picture you want

But I doubt that will work. You can also try
Code:
Set ObjectVariable = Shapes(Shape1").CopyPicture
shp.Fill.UserPicture ObjectVariable
But, like I said, idunnonutink.
 
Upvote 0
Thanks Sam, but neither of these methods work.

For both ideas I get the error "object doesn't support this property or method"

Just to confirm I am refering to the picture correctly as
Sheets("Data").Shapes("Picture1").Delete works. It seems strange to me that MS didn't think anyone would want to use an internal image for the background!
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top