View Single Post
 
Old 12-26-2024, 05:10 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

I don't habitually use draft view, but I do use Word 2019, so my curiosity was aroused by this phenomenon. I confirm I was seeing the same page numbering issue, however here at least it was easy to fix by simply switching to print view, then back again to normal view with the document open. You can do it with one click using a simple macro from a quick access toolbar button.


Code:
Sub MyDraft()
    With ActiveWindow.ActivePane.View
        .Type = wdPrintView
        .Type = wdNormalView
    End With
End Sub
Installing Macros
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote