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;
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?
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?