A family of Microsoft word processing software products for creating web, email, and print documents.
The code is old style and not compatible with Word 2016 (I've made some tests and found that it doesn't work on my machines in all cases).
I suggest to delete the code and use the code below instead, must be placed into the code module ThisDocument.
Andreas.
Option Explicit
Dim WithEvents App As Application
Private Sub Document_Open()
Set App = Application
End Sub
Private Sub App_DocumentOpen(ByVal Doc As Document)
ForceDraftView Doc.ActiveWindow
End Sub
Private Sub App_NewDocument(ByVal Doc As Document)
ForceDraftView Doc.ActiveWindow
End Sub
Private Sub App_WindowActivate(ByVal Doc As Document, ByVal Wn As Window)
ForceDraftView Wn
End Sub
Private Sub ForceDraftView(ByVal W As Window)
If W Is Nothing Then Set W = ActiveWindow
W.View.Draft = True
End Sub