Thanks to all three of you! I used Eddie's method, and after discovering
Ctrl-M to indent, recorded a keyboard macro that does the whole process.
There's probably a much better way of doing it, but for someone who's
profoundly rusty with Word, anything that works is a miracle:
Sub ParaIndent()
'
' ParaIndent Macro
' Macro recorded 8/31/2005
'
Selection.Paragraphs.Indent
With Selection.ParagraphFormat
With .Borders(wdBorderLeft)
.LineStyle = wdLineStyleDashLargeGap
.LineWidth = wdLineWidth050pt
.Color = wdColorAutomatic
End With
.Borders(wdBorderRight).LineStyle = wdLineStyleNone
.Borders(wdBorderTop).LineStyle = wdLineStyleNone
.Borders(wdBorderBottom).LineStyle = wdLineStyleNone
With .Borders
.DistanceFromTop = 1
.DistanceFromLeft = 4
.DistanceFromBottom = 1
.DistanceFromRight = 4
.Shadow = False
End With
End With
With Options
.DefaultBorderLineStyle = wdLineStyleDashLargeGap
.DefaultBorderLineWidth = wdLineWidth050pt
.DefaultBorderColor = wdColorAutomatic
End With
End Sub