View Single Post
 
Old 11-08-2012, 06:05 AM
gmaxey gmaxey is offline Windows 7 32bit Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,601
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

No, you are not doing anything wrong. It seems that feature only applies to the current instance of the document. You are correct, if you close and reopen the document the hightlighting is restored.

All I can suggest, and hopefully it is something you will be able to employ, is a VBA procedure to execute automatically whenever the document is opened:

HTML Code:
Sub AutoOpen()
ActiveDocument.Windows(1).View.ShadeEditableRanges = False
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote