View Single Post
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
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!