You are on page 1of 1

1st Method= Run Macro and Creat after giving name

Sub resize()
Dim i As Long
With ActiveDocument
For i = 1 To .InlineShapes.Count
With .InlineShapes(i)
.ScaleHeight = 90
.ScaleWidth = 90
End With
Next i
End With
End Sub

==========================================
2nd Mathod= First Activate Developer tab from word options

now give this code in vb. you can change hight width after running vb code
VBACODE FOR RESIZING THE PICTURES:
-----------------------------------------------------------------------------------
-----------------
Sub resize()
Dim x As Long
With ActiveDocument
For x = 1 To .InlineShapes.Count
With .InlineShapes(x)
.Height = InchesToPoints(2)
.Width = InchesToPoints(3)
End With
Next x
End With
End Sub

You might also like