D
dd
I think my word is configured to open in markup mode, because no matter if I
save a document in normal or print, it always appears in markup mode as
well.
I don't want it, so I recently added the following code to my documents, to
switch off markup mode, when the document is opened.
Sub Document_Open()
WordBasic.ViewChanges
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdPrintView
Else
ActiveWindow.View.Type = wdPrintView
End If
End Sub
Is there a way to switch markup mode off through word options, or is there a
way to add the above code to my personal macro workbook, so that all
documents open normally?
Kind regards
Dylan
save a document in normal or print, it always appears in markup mode as
well.
I don't want it, so I recently added the following code to my documents, to
switch off markup mode, when the document is opened.
Sub Document_Open()
WordBasic.ViewChanges
If ActiveWindow.View.SplitSpecial = wdPaneNone Then
ActiveWindow.ActivePane.View.Type = wdPrintView
Else
ActiveWindow.View.Type = wdPrintView
End If
End Sub
Is there a way to switch markup mode off through word options, or is there a
way to add the above code to my personal macro workbook, so that all
documents open normally?
Kind regards
Dylan