Hi Gerry,
Thanks for the information and what I conclude is that the following example is the best one to go with:
Kind regards,Option Explicit Sub test() Dim wdDoc As Document Dim bStatus As Boolean Set wdDoc = ActiveDocument With Options bStatus = .BackgroundSave .BackgroundSave = False wdDoc.Save .BackgroundSave = bStatus End With End Sub
Dennis