From: tjb on
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!
From: Stefan Blom on
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" <tjb(a)discussions.microsoft.com> wrote in message
news:A9F8288D-78E7-4494-8621-80B5F3BD3D6F(a)microsoft.com...
> 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!