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  

Set Default "view" to "Final" vs. "Final Showing Markup"



 
 
Thread Tools Display Modes
  #1  
Old July 7th, 2004, 08:29 PM
John Voldal
external usenet poster
 
Posts: n/a
Default Set Default "view" to "Final" vs. "Final Showing Markup"

This seems to be the solution I have been looking for, but I am not familiar with creating Macros. Can you provide step-by-step instructions for creating this Macro?

"Ian Baird [MS]" wrote:

Hi Tracy

Final Showing Markup is the default view for Word. This is simply the way
Word is designed. You can however use a macro to set it to Final.

'WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS EXAMPLE IS 'AT YOUR
OWN RISK.
Microsoft provides this macro code "as is" without warranty of 'any kind,
either
express or implied, including but not limited to the implied warranties of
'merchantability and/or fitness for a particular purpose.


Sub autoOpen()

With ActiveWindow.View

.ShowRevisionsAndComments = False

.RevisionsView = wdRevisionsViewFinal

End With



End Sub

You could also put the following code in the template's Document_New event:

'WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS EXAMPLE IS 'AT YOUR
OWN RISK.
Microsoft provides this macro code "as is" without warranty of 'any kind,
either
express or implied, including but not limited to the implied warranties of
'merchantability and/or fitness for a particular purpose.

Private Sub Document_New()
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With
End Sub

This could be done globally with a COM Add-in. However, it must be
installed on each user's machine.

Regards,

Ian Baird
Microsoft PSS

This posting is provided 'AS IS' with no warranties and confers no rights.



  #2  
Old July 7th, 2004, 10:54 PM
Suzanne S. Barnhill
external usenet poster
 
Posts: n/a
Default Set Default "view" to "Final" vs. "Final Showing Markup"

The macro has already been created for you. All you have to do is install
it. See http://www.gmayor.com/installing_macro.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"John Voldal" John wrote in message
...
This seems to be the solution I have been looking for, but I am not

familiar with creating Macros. Can you provide step-by-step instructions for
creating this Macro?

"Ian Baird [MS]" wrote:

Hi Tracy

Final Showing Markup is the default view for Word. This is simply the

way
Word is designed. You can however use a macro to set it to Final.

'WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS EXAMPLE IS 'AT

YOUR
OWN RISK.
Microsoft provides this macro code "as is" without warranty of 'any

kind,
either
express or implied, including but not limited to the implied warranties

of
'merchantability and/or fitness for a particular purpose.


Sub autoOpen()

With ActiveWindow.View

.ShowRevisionsAndComments = False

.RevisionsView = wdRevisionsViewFinal

End With



End Sub

You could also put the following code in the template's Document_New

event:

'WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS EXAMPLE IS 'AT

YOUR
OWN RISK.
Microsoft provides this macro code "as is" without warranty of 'any

kind,
either
express or implied, including but not limited to the implied warranties

of
'merchantability and/or fitness for a particular purpose.

Private Sub Document_New()
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With
End Sub

This could be done globally with a COM Add-in. However, it must be
installed on each user's machine.

Regards,

Ian Baird
Microsoft PSS

This posting is provided 'AS IS' with no warranties and confers no

rights.




 




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
How to define a default view in Word 2003 DavidJ726 General Discussions 3 August 13th, 2004 01:39 PM
file view default Powerpoint 0 June 16th, 2004 01:46 PM
Default OWA view OT Calendar 0 June 8th, 2004 05:41 PM
How make documents open in the "Final" view Holly Flannery Formatting Long Documents 1 April 30th, 2004 09:56 PM
How make documents open in the "Final" view Melissa Formatting Long Documents 5 April 28th, 2004 04:05 PM


All times are GMT +1. The time now is 11:23 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.