View Single Post
 
Old 02-09-2014, 02:16 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,338
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

There a many border possibilities. The following should give you a starting point:
Code:
Sub InsertPicture()
With Application.Dialogs(wdDialogInsertPicture)
  If .Show = -1 Then
    With Selection
      .MoveStart wdCharacter, -1
      With .InlineShapes(1)
        .LockAspectRatio = True
        .Width = InchesToPoints(3)
        With .Borders
          .OutsideColor = wdColorBlack
          .OutsideLineStyle = wdLineStyleThickThinLargeGap
          .OutsideLineWidth = wdLineWidth300pt
        End With
      End With
      .Collapse
    End With
  End If
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote