WD: TOC Field Not Updated Properly from Recorded Macro (187817)
The information in this article applies to:
- Microsoft Word for the Macintosh 6.0
- Microsoft Word for the Macintosh 6.0.1
- Microsoft Word for the Macintosh 6.0.1a
- Microsoft Word for Windows 6.0
- Microsoft Word for Windows 6.0a
- Microsoft Word for Windows 6.0c
- Microsoft Word for Windows 95
- Microsoft Word for Windows 95 7.0a
- Microsoft Word for Windows NT 6.0
This article was previously published under Q187817 SYMPTOMS
If you use a macro to update a TOC (table of contents) field, Microsoft
Word may not prompt you to choose either Update Page Numbers Only or to
Update Entire Table. Word only updates the page numbers.
CAUSE
By design, Word defaults to Update Page Numbers Only.
WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
You can use a macro to replace the existing table of contents, and in
effect, duplicate the Update Entire Table option programmatically.
The following sample macro locates the TOC field and uses the
InsertTableOfContents command to replace the existing table of contents and
retains all formatting previously applied to the original table.
Sub MAIN
StartOfDocument 'Move insertion point to start of document.
OldVFC = ViewFieldCodes() 'Get the current state of ViewFieldCodes.
ViewFieldCodes 1 'Turn on Field Codes.
EditFindClearFormatting 'Clear EditFind formatting setting.
EditFind .Find = "^19 toc" 'Find the first TOC field.
InsertTableOfContents .Replace = 1 'Replace current table.
ViewFieldCodes OldVFC 'Restore ViewFieldCodes setting.
End Sub
REFERENCES
"Microsoft Word User's Guide," version 6.0. Document number WB51157-1093,
pages 457-458 and 738.
Modification Type: | Minor | Last Reviewed: | 8/17/2005 |
---|
Keywords: | kbdtacode kbfield kbmacro kbmacroexample kbnofix kbprb KB187817 |
---|
|