Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I would like to learn how to easily update the template of existing documents.
Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Hi Nico,
Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta...ate/index.html and there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Hi Jay,
Thanks, that gives a very good insight on the mecanics behind it. Conclusion however is that I need to look for another way (not via changing the template) to change the look and feel (headers/footers etc) of multiple docs at one time. Any ideas how that can be done ? thanks! "Jay Freedman" wrote: Hi Nico, Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta...ate/index.html and there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
You'll need a macro that opens each document and updates it. You can have
the macro modify the style definitions (and anything else) directly, or you can modify the template's styles and have the macro do the VBA equivalent of checking and unchecking the "Automatically Update Document Styles" box in the Templates & Add-Ins dialog. The success of this approach will depend on the documents having been properly formatted with identically named styles throughout. A macro that opens every document in a given folder for the purpose of running a Find & Replace is shown at http://www.gmayor.com/batch_replace.htm. That code could be changed to do style changes instead. If you need help with that, please ask in the Word VBA newsgroup, http://www.microsoft.com/office/comm...rd.vba.general. NicoVM007 wrote: Hi Jay, Thanks, that gives a very good insight on the mecanics behind it. Conclusion however is that I need to look for another way (not via changing the template) to change the look and feel (headers/footers etc) of multiple docs at one time. Any ideas how that can be done ? thanks! "Jay Freedman" wrote: Hi Nico, Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta...ate/index.html and there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Great update, thanks !
One more question: what is the effect of checking the "automatically update document styles" checkbox? Does it update my document when the initially used template for that document is changed ? I have been playing with it, but see no real changes, so I have my questions about me doing it correct, and the use of the checkbox :-) "Jay Freedman" wrote: You'll need a macro that opens each document and updates it. You can have the macro modify the style definitions (and anything else) directly, or you can modify the template's styles and have the macro do the VBA equivalent of checking and unchecking the "Automatically Update Document Styles" box in the Templates & Add-Ins dialog. The success of this approach will depend on the documents having been properly formatted with identically named styles throughout. A macro that opens every document in a given folder for the purpose of running a Find & Replace is shown at http://www.gmayor.com/batch_replace.htm. That code could be changed to do style changes instead. If you need help with that, please ask in the Word VBA newsgroup, http://www.microsoft.com/office/comm...rd.vba.general. NicoVM007 wrote: Hi Jay, Thanks, that gives a very good insight on the mecanics behind it. Conclusion however is that I need to look for another way (not via changing the template) to change the look and feel (headers/footers etc) of multiple docs at one time. Any ideas how that can be done ? thanks! "Jay Freedman" wrote: Hi Nico, Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta...ate/index.html and there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
#6
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
It doesn't look backward to a changed template; rather, if you
manually change formatting in (say) a paragraph in Normal style, it makes the same change in all paragraphs bearing that same style. And since styles are often based on other styles, the change can ripple throughout your document. On Sep 24, 4:13*am, NicoVM007 wrote: Great update, thanks ! One more question: what is the effect of checking the "automatically update document styles" checkbox? Does it update my document when the initially used template for that document is changed ? I have been playing with it, but see no real changes, so I have my questions about me doing it correct, and the use of the checkbox :-) "Jay Freedman" wrote: You'll need a macro that opens each document and updates it. You can have the macro modify the style definitions (and anything else) directly, or you can modify the template's styles and have the macro do the VBA equivalent of checking and unchecking the "Automatically Update Document Styles" box in the Templates & Add-Ins dialog. The success of this approach will depend on the documents having been properly formatted with identically named styles throughout. A macro that opens every document in a given folder for the purpose of running a Find & Replace is shown at http://www.gmayor.com/batch_replace.htm. That code could be changed to do style changes instead. If you need help with that, please ask in the Word VBA newsgroup, http://www.microsoft.com/office/comm....mspx?dg=micro..... NicoVM007 wrote: Hi Jay, Thanks, that gives a very good insight on the mecanics behind it. Conclusion however is that I need to look for another way (not via changing the template) to change the look and feel (headers/footers etc) of multiple docs at one time. Any ideas how that can be done ? thanks! "Jay Freedman" wrote: Hi Nico, Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta.../index.htmland there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP * * * *FAQ:http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks!- |
#7
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
To answer these questions, I'll point you to
http://word.mvps.org/FAQs/MacrosVBA/UpdateStyles.htm, which is also linked from Shauna Kelly's "Attach Template" article that I cited before. There's a lot more there than I want to type. Pay special attention to the cautions about what not to do. On Thu, 24 Sep 2009 01:13:02 -0700, NicoVM007 wrote: Great update, thanks ! One more question: what is the effect of checking the "automatically update document styles" checkbox? Does it update my document when the initially used template for that document is changed ? I have been playing with it, but see no real changes, so I have my questions about me doing it correct, and the use of the checkbox :-) "Jay Freedman" wrote: You'll need a macro that opens each document and updates it. You can have the macro modify the style definitions (and anything else) directly, or you can modify the template's styles and have the macro do the VBA equivalent of checking and unchecking the "Automatically Update Document Styles" box in the Templates & Add-Ins dialog. The success of this approach will depend on the documents having been properly formatted with identically named styles throughout. A macro that opens every document in a given folder for the purpose of running a Find & Replace is shown at http://www.gmayor.com/batch_replace.htm. That code could be changed to do style changes instead. If you need help with that, please ask in the Word VBA newsgroup, http://www.microsoft.com/office/comm...rd.vba.general. NicoVM007 wrote: Hi Jay, Thanks, that gives a very good insight on the mecanics behind it. Conclusion however is that I need to look for another way (not via changing the template) to change the look and feel (headers/footers etc) of multiple docs at one time. Any ideas how that can be done ? thanks! "Jay Freedman" wrote: Hi Nico, Documents based on a template do not automatically change when the template is modified. You need to perform an extra step to update each document. This is explained at http://www.shaunakelly.com/word/atta...ate/index.html and there is additional background information at http://www.shaunakelly.com/word/temp...ons/index.html. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. NicoVM007 wrote: I would like to learn how to easily update the template of existing documents. Does a document change when the template on which it has been created changes as well? If not, how can set up such a policy? I want to update a series of docs in one time by changing the nested template, and not change the docs one by one... Thanks! |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Best way to put existing documents into new template (Word 2007)? | Microsoft Word Help | |||
Style names in Word 03 template change when attached to existing d | Microsoft Word Help | |||
New Printer...can you change the settings for existing documents? | Page Layout | |||
apply a template to existing documents | Page Layout | |||
Applying Styles from one template to existing documents | Microsoft Word Help |