J'ai une macro pour mon document Word qui est censée mettre à jour tous les champs et toute la table des matières.
Sub UpdateFields()
Dim oStory As Range
For Each oStory In ActiveDocument.StoryRanges
oStory.Fields.Update
If oStory.StoryType <> wdMainTextStory Then
While Not (oStory.NextStoryRange Is Nothing)
Set oStory = oStory.NextStoryRange
oStory.Fields.Update
Wend
End If
Next oStory
Set oStory = Nothing
Dim TOC As TableOfContents
For Each TOC In ActiveDocument.TablesOfContents
TOC.Update
Next
End Sub
Cependant, lorsqu'il est exécuté, j'obtiens cette erreur.
Erreur et ensuite déboguer ci-dessous
J'apprécierais toute aide pour résoudre ce problème.