View Single Post
 
Old 07-03-2023, 04:51 AM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,159
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

It is a really bad idea to leave this setting turned on for your documents - especially if the template attached is Normal.dotm. If you send your document to other people, the styles will refresh to their template instead of yours so you will never be able to predict what the document will look like on other machines.

However, you can add a macro to your template to either refresh styles at the click of a button or perhaps as you open an existing document. The macro can do the same thing but by leaving that checkbox unticked, it won't run on documents that you have sent to other people.
Code:
Sub AutoOpen()
  ActiveDocument.UpdateStyles
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote