A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Page Layout
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

I cannot undo the 'reveal formatting" for any word document: why?



 
 
Thread Tools Display Modes
  #1  
Old October 3rd, 2005, 07:02 AM
ti_puss
external usenet poster
 
Posts: n/a
Default I cannot undo the 'reveal formatting" for any word document: why?

For all my Word documents, the 'reveal formatting' is set on ... i would
like to disable it but it does not work
  #2  
Old October 3rd, 2005, 08:52 AM
Graham Mayor
external usenet poster
 
Posts: n/a
Default I cannot undo the 'reveal formatting" for any word document: why?


You can switch it off on an ad hoc basis by clicking the ¶ button or CTRL+*
You can ensure it stays off until you want it by adding the following
macros: These also cover some of the usual problems Word 2003 in particular
has with common preferences, but you can delete the extra lines if you want.

Sub AutoNew()
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
'.Type = wdNormalView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
End Sub


Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
ActiveWindow.ActivePane.View.ShowAll = False
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.ShowFieldCodes = False
.DisplayPageBoundaries = True
End With
End Sub

Sub AutoExec()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
CommandBars("Mail Merge").Visible = False
Application.OnTime _
When:=Now + TimeValue("00:00:01"), Name:="CodesOff"
End Sub

Sub CodesOff()
On Error GoTo oops
ActiveWindow.ActivePane.View.ShowAll = False
oops:
End Sub

http://www.gmayor.com/installing_macro.htm


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


ti_puss wrote:
For all my Word documents, the 'reveal formatting' is set on ... i
would like to disable it but it does not work



  #3  
Old October 3rd, 2005, 08:53 AM
Stefan Blom
external usenet poster
 
Posts: n/a
Default I cannot undo the 'reveal formatting" for any word document: why?

On the Tools menu, click Options. Click the View tab. Under
"Formatting marks", clear all options, including the one called "All".
Does this make a difference?

--
Stefan Blom
Microsoft Word MVP


"ti_puss" wrote in message
news
For all my Word documents, the 'reveal formatting' is set on ... i
would
like to disable it but it does not work





 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reveal Codes BAW General Discussion 2 June 7th, 2005 03:38 PM
Envelope Address GR New Users 5 April 24th, 2005 09:48 PM
How do I create & merge specific data base & master documents? maggiev New Users 2 January 12th, 2005 11:30 PM
How to change merge forms from Word Perfect to Microsoft Word Charles Kenyon General Discussion 1 December 30th, 2004 03:35 PM
How to run word and pass a mail merge values and fax it to the recipient Belinda Mailmerge 2 June 13th, 2004 12:49 AM


All times are GMT +1. The time now is 10:41 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.