View Single Post
 
Old 02-11-2014, 07:24 PM
saltlakebuffalo saltlakebuffalo is offline Windows 7 64bit Office 2010 32bit
Novice
 
Join Date: Feb 2014
Posts: 11
saltlakebuffalo is on a distinguished road
Default

Hi, Paul;
I made the following code and it works:

With objWordFile.ActiveDocument
Dim myParagraphs As Paragraphs
Dim myparagraph As Paragraph
Set myParagraphs = .Paragraphs
For Each myparagraph In myParagraphs
myparagraph.Range.ParagraphFormat.SpaceAfter = 0
Next
End With

Thank you again for your guidance.
Jason
Reply With Quote