When working in my form, especially the header, my document flips into draft view. Please help
By design, in print view the header/footer appear faded. If you switch to the header/footer for editing, the body appears faded. Is this what you are talking about?
If not, could you perhaps attach a screen shot?
Hi,
According to your description, my understanding is that you want to display Header/Footer in Draft View with Word. Am I right? If yes, please try the workaround:
===
You can display the header pane by adding the built-in command NormalViewHeaderArea to the QAT.
You can force the header or footer pane (but not both) in draft view by pasting the following in the VBE immediate window and pressing enter:
ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Select
or
ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Select
AFAIK there is no built in command to display the footer command and no way to show both.
You could also add the following macros to your normal (or other template) and assign keyboard shortcuts:
Sub ShowHeaderPane
ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Select
End Sub
Sub ShowFooterPane
ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Select
End Sub
===
Reference:
If I misunderstood something, please feel free let me know.
Regards,
George ZhaoTechNet Community Support
Hi,
According to your description, my understanding is that Word keeps randomly switching to draft view when you edited? Am I right? If yes, please see this article:
If I misunderstood something, please feel free let me know.
Regards,
George ZhaoTechNet Community Support
See my previous answer. Could you perhaps describe more of what is happening and what you are doing when it happens.
See Add-Ins in Microsoft Word for more about controlling Add-Ins.