View custom toolbar?

  • Thread starter Thread starter Stu
  • Start date Start date
S

Stu

Is it possible to make a custom toolbar to disappear on certain sheets of a
workbook or does it have to stay there?

Thanks
 
And I would do that how?


--
Thanks
--
Stu


Tom Ogilvy said:
You would have to use the workbook events to hide the toolbar and make it
re-appear.

--
Regards,
Tom Ogilvy


Stu said:
Is it possible to make a custom toolbar to disappear on certain sheets
of
 
So how do I know what to call the toolbar in VB because I can probably do
everything else (except hide it, unless it is '.hidden = true' then I can do
that).
 
Look in Tools=>Customize, how is it listed there. That is it's name

Application.Commandbars("custom 1").Visible = False

as an example.
 
Back
Top