Hello everyone,
I am using a MACRO to resize all the pictures in my word document :
Code:
Sub Macro1()
For Each image In ActiveDocument.InlineShapes
image.Width = 115
Next
End Sub
The MACRO works pretty well but apply to my whole document and then to all the pictures.
I would like this MACRO to apply only on my selection (I select a part with text and pictures) and then to only change the size of the selected pictures.
I hope someone could help me with that
Thanks
See you