View Single Post
 
Old 01-24-2014, 08:51 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,512
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Assuming your pictures are inserted in-line, try:
Code:
Sub Demo()
Dim iShp As InlineShape
For Each iShp In ActiveDocument.Tables(1).Range.InlineShapes
  With iShp
    .LockAspectRatio = False
    .Height = InchesToPoints(3.8)
    .Width = InchesToPoints(2.75)
  End With
Next
End Sub
Although this will do as you ask, I'm not sure disabling the LockAspectRatio is a good idea. That might result in some images getting messed about.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote