A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Page Layout
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Table of Contents Automatic Update



 
 
Thread Tools Display Modes
  #1  
Old June 3rd, 2010, 05:01 PM posted to microsoft.public.word.pagelayout
tjb
external usenet poster
 
Posts: 30
Default Table of Contents Automatic Update

Is there a way that I can set the table of contents to automatically update
like when I save or close a document? If so, how? Thanks!
  #2  
Old June 3rd, 2010, 07:42 PM posted to microsoft.public.word.pagelayout
Stefan Blom[_3_]
external usenet poster
 
Posts: 4,556
Default Table of Contents Automatic Update

The following pair of macros should work:

Sub FileSave()
Dim t As TableOfContents
For Each t In ActiveDocument.TablesOfContents
t.Update
Next t
If ActiveDocument.Path = "" Then
Dialogs(wdDialogFileSaveAs).Show
Else
ActiveDocument.Save
End If
End Sub

Sub FileSaveAs()
Dim t As TableOfContents
For Each t In ActiveDocument.TablesOfContents
t.Update
Next t
Dialogs(wdDialogFileSaveAs).Show
End Sub

Place the macros in the Normal template. See
http://www.gmayor.com/installing_macro.htm for assistance.

--
Stefan Blom
Microsoft Word MVP
(Message posted via msnews.microsoft.com)



"tjb" wrote in message
...
Is there a way that I can set the table of contents to automatically update
like when I save or close a document? If so, how? Thanks!




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:56 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.