View Single Post
 
Old 03-03-2022, 10:55 AM
Matt C's Avatar
Matt C Matt C is offline Windows 10 Office 97-2003
Advanced Beginner
 
Join Date: May 2021
Location: London, UK
Posts: 30
Matt C is on a distinguished road
Question Are Word 2003's "Compatibility Options" document-specific?

Hi folks.

I just want to establish if Word 2003's "Compatibility Options" are document-specific or whether they require a VBA routine to keep them in place when sharing between users.

For reference, my template automatically triggers a handful of settings when a new document is created (see below) so that I get my paragraph spacing as I want it but, ultimately, the document will be shared without the template attached.

Will the Compatability Options stay as I've set them when sharing with an end user (with 2003 or later versions of Word) or will they revert to default settings and mess up the paragraph spacing?

Thanks.

Matt

Quote:
With ActiveDocument
.Compatibility(wdDontUseHTMLParagraphAutoSpacing) = True
.Compatibility(wdSuppressBottomSpacing) = True
.Compatibility(wdSuppressTopSpacing) = True
.Compatibility(wdSuppressSpBfAfterPgBrk) = True
End With
Reply With Quote