View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Update Table of Contents

You can't really change the default, but you can install this macro
and assign a toolbar button and/or keyboard shortcut to it.

Sub UpdateTableOfContents()
Dim toc As TableOfContents

For Each toc In ActiveDocument.TablesOfContents
toc.Update
Next
End Sub

See http://www.gmayor.com/installing_macro.htm,
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm
and
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm
if needed.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Fri, 3 Nov 2006 04:44:02 -0800, DeanH
wrote:

Word 2000 SP3

Is it possible to change the default setting of the Update Table of Contents
options from "Update page numbers only" to "Update entire table" instead?

Many thanks in advance of your assistance.
DeanH