Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
This macro will make MS Word start up in "Final" as opposed to "Final
Showing Markup." It's quite annoying when Final Showing Markup is the default view--this has to stop/be disabled; I hope that this is addressed in the next version of Office. Back to the point, this macro will take you back to the days of Word XP and stop the Final Showing Markup view before it rears its ugly head. Final Showing Markup *is* shown by default if changes are tracked on a document. For example, edit a document of your own, track changes, then send it to a friend. Even though your friend doesn't want to see the markup, they *WILL* because it's there. This little VBA macro makes it so that you won't see the markup by default anymore, and instead will see the Final (without markup) view. Just dump these seven lines into a module in your Normal template (hit ALT+F11 to start up the Visual Basic Editor, right click Modules under the -Normal- directory and add a Module). Since the name of this sub is "AutoOpen," it will execute whenever you open a document. See more at http://jyeee.blogspot.com/2006/04/fr...e-reading.html ''''''''' VB Start ''''''''' Sub AutoOpen() With ActiveWindow.View .ShowRevisionsAndComments = False .RevisionsView = wdRevisionsViewFinal End With CommandBars("Reviewing").Visible = False '''OPTIONAL: turns off Reviewing toolbar End Sub ''''''''' VB End ''''''''' Hope this helps! jyeee |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
If you don't want the recipient to see the markup, you should Accept All
Changes in Document and Delete All Comments in Document (on a copy, if desired) before sending the document. -- 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. "jyeee" wrote in message oups.com... This macro will make MS Word start up in "Final" as opposed to "Final Showing Markup." It's quite annoying when Final Showing Markup is the default view--this has to stop/be disabled; I hope that this is addressed in the next version of Office. Back to the point, this macro will take you back to the days of Word XP and stop the Final Showing Markup view before it rears its ugly head. Final Showing Markup *is* shown by default if changes are tracked on a document. For example, edit a document of your own, track changes, then send it to a friend. Even though your friend doesn't want to see the markup, they *WILL* because it's there. This little VBA macro makes it so that you won't see the markup by default anymore, and instead will see the Final (without markup) view. Just dump these seven lines into a module in your Normal template (hit ALT+F11 to start up the Visual Basic Editor, right click Modules under the -Normal- directory and add a Module). Since the name of this sub is "AutoOpen," it will execute whenever you open a document. See more at http://jyeee.blogspot.com/2006/04/fr...e-reading.html ''''''''' VB Start ''''''''' Sub AutoOpen() With ActiveWindow.View .ShowRevisionsAndComments = False .RevisionsView = wdRevisionsViewFinal End With CommandBars("Reviewing").Visible = False '''OPTIONAL: turns off Reviewing toolbar End Sub ''''''''' VB End ''''''''' Hope this helps! jyeee |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Word should catalog misspelled words to study. | Microsoft Word Help | |||
Word 2003 | Microsoft Word Help | |||
WP merge file to Word | Tables | |||
How do I turn off the markup view so it stays off in Word 2003? | New Users | |||
How can I turn off the "showing markup" in Word? | Microsoft Word Help |