Я хочу спосіб оновлення всіх полів у документі Word 2013. (Якщо це працює в інших версіях, тим краще; спочатку у мене була ця проблема з Word 2007, і, здається, нічого не змінилося з того часу.) Це включає перехресні посилання, номери сторінок, зміст, індекси, заголовки тощо. Якщо її можна оновити натисканням F9, я хочу її оновити.
(Теоретично оновлення полів може спричинити необхідність оновлення інших полів, наприклад, більш довгий вміст змінює деякі номери сторінок у головному тексті. Піклування про загальні випадки для мене досить добре. Насправді це нормально, якщо мені потрібно запустити макрос два-три рази, перш ніж він стабілізується. Я просто хочу мати єдиний макрос, який знайде все.)
Наразі моя спроба не оновлює поля в текстових полях всередині фігур. Як їх оновити, а що ще я пропустив?
EDIT : Поєднання відповіді, отриманої з тим, що я вже мав, дає макрос, який, здається, оновлює все (з відомим дефектом ).
'' 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