Picture Size

N

Nick

Hi all,

i'm using Word 2003, i have a document with text and
pictures, and i want to resize all pictures at once ,
does anyone know how to do that?
I cannot just select all pictures and change the size.

thx
 
D

Doug Robbins - Word MVP

Use a macro,

Dim ashape As InlineShape
For Each ashape In ActiveDocument.InlineShapes
ashape.Height = 100
ashape.Width = 200
Next ashape


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Top