S
sdm
If you have a picture embedded in a Word document, is there any way to
re-size it using VBA macro code
re-size it using VBA macro code
If you have a picture embedded in a Word document, is there any way to
re-size it using VBA macro code
I wonder if the following block of code will work:
ActiveDocument.Shapes(22).Select
With Selection.ShapeRange
.ScaleHeight 1.1, msoFalse, msoScaleFromTopLeft
.ScaleWidth 1.1, msoFalse, msoScaleFromTopLeft
.Left = wdShapeCenter
End With