Prev: Sectionpage, sections and word 2003/2007 (buggy)
Next: How do I spell out page numbers in header?
From: tjb on 3 Jun 2010 12:01 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 3 Jun 2010 14:42 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!
|
Pages: 1 Prev: Sectionpage, sections and word 2003/2007 (buggy) Next: How do I spell out page numbers in header? |