Tôi muốn một cách cập nhật tất cả các trường trong tài liệu Word 2013. (Nếu nó hoạt động trong các phiên bản khác, thì tốt hơn; ban đầu tôi gặp vấn đề với Word 2007 và dường như không có gì thay đổi kể từ đó.) Nếu nó có thể được cập nhật bằng cách nhấn F9, tôi muốn nó được cập nhật.
(Về lý thuyết, các trường cập nhật có thể khiến các trường khác cần cập nhật, ví dụ: mục lục dài hơn sẽ thay đổi một số số trang trong văn bản chính. Chăm sóc các trường hợp phổ biến là đủ tốt đối với tôi. macro hai hoặc ba lần trước khi nó ổn định. Tôi chỉ muốn có một macro tìm thấy mọi thứ.)
Nỗ lực của tôi cho đến nay không cập nhật các trường trong hộp văn bản bên trong các hình. Làm cách nào để cập nhật chúng, và tôi còn bỏ lỡ điều gì nữa không?
EDIT : Kết hợp câu trả lời được đưa ra với những gì tôi đã có cho một macro dường như cập nhật mọi thứ (với một khiếm khuyết đã biết ).
'' Update all the fields, indexes, etc. in the specified document.
Sub UpdateAllFieldsIn(doc As Document)
'' Update tables. We do this first so that they contain all necessary
'' entries and so extend to their final number of pages.
Dim toc As TableOfContents
For Each toc In doc.TablesOfContents
toc.Update
Next toc
Dim tof As TableOfFigures
For Each tof In doc.TablesOfFigures
tof.Update
Next tof
'' Update fields everywhere. This includes updates of page numbers in
'' tables (but would not add or remove entries). This also takes care of
'' all index updates.
Dim sr As range
For Each sr In doc.StoryRanges
sr.Fields.Update
While Not (sr.NextStoryRange Is Nothing)
Set sr = sr.NextStoryRange
'' FIXME: for footnotes, endnotes and comments, I get a pop-up
'' "Word cannot undo this action. Do you want to continue?"
sr.Fields.Update
Wend
Next sr
End Sub
'' Update all the fields, indexes, etc. in the active document.
'' This is a parameterless subroutine so that it can be used interactively.
Sub UpdateAllFields()
UpdateAllFieldsIn ActiveDocument
End Sub
Dim toa As Word.TableOfAuthorities / For Each toa In ActiveDocument.TablesOfAuthorities / toa.Update / Next