Suzanne said:
I have to confess I've never seen this. My problem is the opposite:
when I turn on the Drawing toolbar (often just for reference, in
answer to a user question) or insert a graphic, Word switches to
Print Layout. It doesn't switch back to Normal when I close the
Drawing toolbar or Undo insertion of the graphic.
That seems to be normal behaviour and presumably works on the premise that
you can't draw in normal.view.
The drawing toolbar part is easy to correct however, using the following
macro.
Sub Drawing()
With CommandBars("Drawing")
..Visible = Not .Visible
End With
ActiveWindow.View.Type = wdNormalView
End Sub
It'll still jump to print view when you actually use the tools, but
dismissing the toolbar using the command will pop you back to normal view.
Replace the 'draw' button on the toolbar with a button to call this macro.
But if Word is
switching to Normal view, it could indicate a graphics overload, and
this could mean that your graphics driver needs to be updated or,
more seriously, that you need more computing power (primarily RAM,
both in the computer and on the video card, but also processing
speed) in order to handle the graphics load.
It could also suggest a corrupt data key in the registry or maybe some odd
corruption in normal.dot - either of which can produce odd behaviour with
menu functions.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail (e-mail address removed)
Web site
www.gmayor.dsl.pipex.com
Word MVP web site
www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>