David said:
I have been having a friendly fight with Word 2003 since I started
using it. I change the toolbars to the ones ** I ** want and the next
time I open Word I find the toolbars ** Word ** wants to have.
How am I to keep the toolbars from the 'mind-of-their-own' syndrome?
Dave French
To a large extent what you save in normal.dot is what you get, but there are
others that seem to have a mind of their own - eg the reviewing toolbar.
These are best controlled by auto macros
eg from my own system:
Sub Autonew()
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.DisplayPageBoundaries = True
End With
CommandBars("Reviewing").Visible = False
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
.FieldShading = wdFieldShadingWhenSelected
.DisplayPageBoundaries = True
End With
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
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>