H
Hammer_757
Im learning about creating menu items and grabbing information from
few books and online.
If I create a floating toolbar using the following the toolbar will b
temporary and not be there the next time the workbook is opened.
Set cbar = Application.CommandBars.Add("Custom Toolbar"
msoBarFloating, False, True)
cbar.Visible = True
following this format:
expression.Add(Name, Position, MenuBar, Temporary) with "temporary" se
to TRUE
Creating a Custom menu the sample I am working with does not provid
the "temporary" attribute. Even though the ADD method is used.
Set cbpop = Application.CommandBars("worksheet Menu Bar"). _
Controls.Add(Type:=msoControlPopup)
cbpop.Caption = "&custom"
cbpop.Visible = True
I think its because its a "control" so the add method is different.
Is there a way to make this temporary?
Thank
few books and online.
If I create a floating toolbar using the following the toolbar will b
temporary and not be there the next time the workbook is opened.
Set cbar = Application.CommandBars.Add("Custom Toolbar"
msoBarFloating, False, True)
cbar.Visible = True
following this format:
expression.Add(Name, Position, MenuBar, Temporary) with "temporary" se
to TRUE
Creating a Custom menu the sample I am working with does not provid
the "temporary" attribute. Even though the ADD method is used.
Set cbpop = Application.CommandBars("worksheet Menu Bar"). _
Controls.Add(Type:=msoControlPopup)
cbpop.Caption = "&custom"
cbpop.Visible = True
I think its because its a "control" so the add method is different.
Is there a way to make this temporary?
Thank