H Howard Cross Mar 3, 2004 #1 Is there any way to prevent the reviewing toolbar from starting when opening an existing document? OS = XP Home app = Office 2003
Is there any way to prevent the reviewing toolbar from starting when opening an existing document? OS = XP Home app = Office 2003
G Graham Mayor Mar 3, 2004 #2 You can force it off with a pair of macros: Sub Autonew() CommandBars("Reviewing").Visible = False End Sub Sub AutoOpen() CommandBars("Reviewing").Visible = False End Sub See http://www.gmayor.com/installing_macro.htm -- <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<> Graham Mayor - Word MVP Web site www.gmayor.com Word MVP web site www.mvps.org/word <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
You can force it off with a pair of macros: Sub Autonew() CommandBars("Reviewing").Visible = False End Sub Sub AutoOpen() CommandBars("Reviewing").Visible = False End Sub See http://www.gmayor.com/installing_macro.htm -- <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<> Graham Mayor - Word MVP Web site www.gmayor.com Word MVP web site www.mvps.org/word <>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
G Greg Maxey Mar 3, 2004 #3 Howard, Put the following line in an AutoOpen macro: CommandBars("Reviewing").Visible = False See: http://www.gmayor.com/installing_macro.htm
Howard, Put the following line in an AutoOpen macro: CommandBars("Reviewing").Visible = False See: http://www.gmayor.com/installing_macro.htm