outline toolbar in Word 2003

  • Thread starter Thread starter removing all headers and footers
  • Start date Start date
R

removing all headers and footers

Is there a way to permanently get rid of the outlining toolbar. When I go
back and forth from print view to outline view, it keeps coming back. I do
not need it and want to get rid of it forever if I can
 
This works but I have to do it by hand once in Word, once, before it does it
for every switching. Can I make it automatically do that on entering word
2003?
 
When I go into macros/create it takes me to a sub-module with an autoexec
macro already in operation (savereminder) and not to normal template. Can I
number the autoexec files to create a new one? I am not familiar with this
type of macro, thanks.
 
If you really already have a macro named AutoExec, just add the new code to
what is already there (between Sub AutoExec and End Sub, omitting those
parts from the new macro).

But I would imagine that the SaveReminder macro is a separate macro with its
own name: does it begin with Sub SaveReminder?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"removing all headers and footers"
 
No, there can be only one AutoExec macro in Normal.dot (if you were to try a
name such as AutoExec1, it would not be executed automatically when Word
starts).

However, you can add the line about CommandBars to the existing AutoExec
macro. If it looks like this now:

Sub AutoExec()
' some code here
End Sub

then copy the line about CommandBars and paste it in just before the End Sub
line:

Sub AutoExec()
' some code here
CommandBars("Outlining").Enabled = False
End Sub

and save the template.
 
when I go to macro/macros and see the list of macros I have created, there is
no autoexec listed or shown there. However, when I type in the "new" macro
name autoexec, it asks if I want to replace the autoexec file? So there must
be one that is not shown in the macro list?

If I type "autoexec" in that new macro name box and then use "step in" it
takes me to a (Visual Basic) SaveRem "module" (I have a save file reminder
add-in operating from one of the MVP websites) with its long list of command,
but when I add this outline view bar code to it as you suggest between sub
outline and end sub in that long list of entries, it does not work after I go
out of word and come back in?
 
There may be an AutoExec macro in an add-in.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"removing all headers and footers"
 
Back
Top