This should do it. Obviously you will need to change the size settings
(.width & .height) to suit and also the position (.top & .left)
'code starts
Sub picsize()
Dim oSld As Slide
Dim oShp As Shape
For Each oSld In ActivePresentation.Slides
For Each oShp In oSld.Shapes
If oShp.Type = msoPicture Then
With oShp
.Width = 100
.Height = 100
.Top = 100
.Left = 100
End With
End If
Next oShp
Next oSld
End Sub
'code ends

Signature
-----------------------------------------
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
> Hi,
>
[quoted text clipped - 4 lines]
>
> TIA all
MoiMeme - 04 Jun 2006 13:22 GMT
Many thanks !
Will try it illico !
> This should do it. Obviously you will need to change the size settings
> (.width & .height) to suit and also the position (.top & .left)
[quoted text clipped - 29 lines]
>>
>> TIA all
MoiMeme - 04 Jun 2006 14:37 GMT
Hi John,
it worked fine.
Have modified the code a little so I can resize picture on first slide to
correct size-position, then run the code, to adjust all others to same
valudes as first slide ones.
Thanks a lot !!!
Phil
> This should do it. Obviously you will need to change the size settings
> (.width & .height) to suit and also the position (.top & .left)
[quoted text clipped - 29 lines]
>>
>> TIA all
John Wilson - 04 Jun 2006 15:15 GMT
Glad to be of help, reading the size and position af a sample pic sounds like
a good move!
_____________________________
John Wilson
Microsoft Certified Office Specialist
> Hi John,
>
[quoted text clipped - 39 lines]
> >>
> >> TIA all
MoiMeme - 04 Jun 2006 16:02 GMT
Thanks.
Have tested and it works fine
> Glad to be of help, reading the size and position af a sample pic sounds
> like
[quoted text clipped - 50 lines]
>> >>
>> >> TIA all