Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unhide Main Menu Bar | Excel Worksheet Functions | |||
Main menu is missing | Excel Discussion (Misc queries) | |||
Why has my main menu bar suddenly disappeared? | Excel Discussion (Misc queries) | |||
Menu items added with menu item editor in older versions | Excel Discussion (Misc queries) | |||
How to remove an Excel Main Menu item inserted by .xla file | Excel Discussion (Misc queries) |