Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
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! |
#3
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
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! |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Update Table of Contents: Document Not Seeing heading update | Microsoft Word Help | |||
Automatic table of contents | New Users | |||
Update Table of Contents | New Users | |||
Automatic Table of Contents update | Microsoft Word Help | |||
Update Table of Contents | Microsoft Word Help |