Order - Send to Back

mart1n23

New Member
Joined
Oct 14, 2005
Messages
36
Hi everyone.

I've written some code to insert a picture onto a powerpoint slide from a file link in a textbox on a different slide.

Here is the code;

Code:
With ActivePresentation.Slides("Media_BoxType-Brown2")
    .Shapes.AddPicture FileName:=(Slide4.TextBox14), LinkToFile:=msoTrue, SaveWithDocument:=msoTrue, _
    Left:=32.75, Top:=145.25, Width:=294.875, Height:=221.125
    End With

The problem is, I have textboxes on the page it is being added to, and I want the picture to appear behind them.

Can anyone help me out?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Not sure with PowerPoint.
Excel uses
Code:
Selection.ShapeRange.ZOrder msoSendToBack
 
Upvote 0

Forum statistics

Threads
1,196,030
Messages
6,012,965
Members
441,741
Latest member
jlburn

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