drawing toolbar

  • Thread starter Thread starter Maree
  • Start date Start date
M

Maree

does anyone know how to get the Drawing toolbar to appear?
clicking the drawing icon and selecting drawing from the
view -> toolbars menu do not seem to work.. it is as
though the toolbar is there, but hidden somewhere...
how do I get it to appear ..

thanks in advance,
Maree
 
try view << toolbar <<drawing

thereafter it would normally pop up somewhere at the bottom of the
page.
 
Hi Maree

It tends to place itself at the bottom of the window. Does Customize > Reset
do anything ? It may also be placed way off the screen. If so a macro could
bring it in position. See if this helps:

Sub Test()
With Application.CommandBars("Drawing")
.Visible = True
.Reset
.Position = msoBarFloating
.Top = 300
.Left = 300
End With
End Sub
 
Back
Top