tags:

views:

150

answers:

1

Is it possible to control the Tools->Options->View->"View Whitespace between pages" through VBA/Macros?

Thanks.

A: 

The problem is that these settings appear to be changing in a random manner

Actually your clueless users are clicking between the pages and hiding the whitespace. It's another simple click to get it back.

To do it programmatically see this link:

http://word.mvps.org/FAQs/MacrosVBA/DocumentEvents.htm

Add a AutoOpen macro into everyone's Normal.Dot template and add the line

ActiveWindow.View.DisplayPageBoundaries = True
DJ
Sorry I edited my description to remove the stuff about the users before I saw your answer.
Cal
... ActiveWindow.View.DisplayPageBoundaries is exactly what I was looking for thanks.
Cal