Hi,
That warning is part of how you have Word configured. It can be disabled temporarily, with the following code mods.
Starting with the end of the 'Dim' line, add the following:
Code:
, TrkStatus As Boolean
TrkStatus = Options.WarnBeforeSavingPrintingSendingMarkup
Options.WarnBeforeSavingPrintingSendingMarkup = False
then insert:
Code:
Options.WarnBeforeSavingPrintingSendingMarkup = TrkStatus
before:
Code:
Application.ScreenUpdating = True
This retains the current state of the documents, without changing their content. Simply changing the display to 'final' won't deactivate the messsage.