New Main menu item
Dim oCB As CommandBar
Dim oCtl As CommandBarControl
Dim strMenuName As String
strMenuName = "My new menu"
Set oCB = Application.CommandBars("Worksheet Menu Bar")
On Error Resume Next
' Delete the menu if it already exists
oCB.Controls(strMenuName).Delete
On Error GoTo 0
' Add the main menu
Set oCtl = oCB.Controls.Add(Type:=msoControlPopup, temporary:=True)
' Add the submenu items
With oCtl
.Caption = strMenuName
With .Controls.Add(Type:=msoControlButton)
.Caption = "Save this worksheet"
.OnAction = "cmdSaveMe"
End With
With .Controls.Add(Type:=msoControlButton)
.Caption = "Hide this worksheet"
.OnAction = "cmdHideMe"
End With
'etc.
End With
--
HTH
Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
"Cynthia" wrote in message
news:mQTmc.316$BJ6.21823@attbi_s51...
I am trying to use this code I copied from a spreadsheet and changed using
help from this newsgroup,
the commented line uses the "modern" version (but doesn't work at all.
With the "Menubars"
collection, the Delete method always throws an error...though it can be
trapped this is not right.
How can I add a new item to the main menu with 12 subitems?
strMenuName = "My new menu"
' Delete the menu if it already exists
MenuBars("Worksheet Menu Bar").Menus(strMenuName).Delete
'Application.CommandBars("Worksheet Menu
Bar").Controls(strMenuName).Delete
' Add the main menu
MenuBars("Worksheet Menu Bar").Menus.Add Caption:=strMenuName,
befo="Help"
'Application.CommandBars("Worksheet Menu Bar").Controls.Add.Caption =
strMenuName
' Add the submenu items
With MenuBars("Worksheet Menu Bar").Menus(strMenuName).MenuItems
'With Application.CommandBars("Worksheet Menu
Bar").Controls(strMenuName)
.Add Caption:="Save this worksheet", OnAction:="cmdSaveMe"
...blah, blah, blah...
End With
Thank you,
Cindi
|