![]() |
|
#2
|
||||
|
||||
|
If you insert an Active-X image control and position/size it where you want the picture to go, you could use a macro like:
Code:
Private Sub Image1_Click()
With Application.Dialogs(xlDialogInsertPicture)
If .Show = True Then
With Selection.ShapeRange
.Width = Image1.Width
.Height = Image1.Height
.Top = Image1.Top
.Left = Image1.Left
End With
End If
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
slidemaster view, insert placeholder greyed out
|
banjodaddy | PowerPoint | 1 | 01-14-2016 03:28 PM |
"Insert Picture\Link to File..." embeds picture
|
sinz54 | Drawing and Graphics | 1 | 09-29-2013 06:31 PM |
SlideMaster: Date Placeholder, Footer Placeholder, Slide Number Placeholder?
|
tinfanide | PowerPoint | 1 | 04-05-2013 10:37 AM |
Picture Placeholder problem
|
lerningdaily | PowerPoint | 2 | 03-04-2013 02:09 AM |
Picture "Placeholder" in Word 2003
|
legodan | Drawing and Graphics | 1 | 10-31-2011 02:18 AM |