Greetings! Could you suggest me please how to do this?
D Doug Robbins - Word MVP Aug 25, 2008 #2 The following code will toggle the displya of white space With ActiveWindow.View If .DisplayPageBoundaries = True Then .DisplayPageBoundaries = False Else .DisplayPageBoundaries = True End If End With -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP
The following code will toggle the displya of white space With ActiveWindow.View If .DisplayPageBoundaries = True Then .DisplayPageBoundaries = False Else .DisplayPageBoundaries = True End If End With -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP
G Graham Mayor Aug 25, 2008 #3 Or even simpler With ActiveWindow.View .DisplayPageBoundaries = Not .DisplayPageBoundaries End With -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Or even simpler With ActiveWindow.View .DisplayPageBoundaries = Not .DisplayPageBoundaries End With -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
A Andrey Kazak Aug 25, 2008 #4 Thank you! Graham Mayor said: Or even simpler With ActiveWindow.View .DisplayPageBoundaries = Not .DisplayPageBoundaries End With -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Click to expand...
Thank you! Graham Mayor said: Or even simpler With ActiveWindow.View .DisplayPageBoundaries = Not .DisplayPageBoundaries End With -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Click to expand...