drawing toolbar

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
 
A

a_evie

try view << toolbar <<drawing

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

Harald Staff

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top