XL: Visual Basic Macros to Add or Delete a Custom MenuID: Q141688
|
In Microsoft Excel, you can use a Microsoft Visual Basic for Applications
macro to add and remove custom menus and menu items.
For information about how to do this in Microsoft Excel 97 for Windows and
Microsoft Excel 98 Macintosh Edition, please see the following article in
the Microsoft Knowledge Base:
Q159619 XL97: Sample Macros for Customizing Menus and Submenus
Microsoft provides programming examples for illustration only, without
warranty either expressed or implied, including, but not limited to, the
implied warranties of merchantability and/or fitness for a particular
purpose. This article assumes that you are familiar with the programming
language being demonstrated and the tools used to create and debug
procedures. Microsoft Support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to
provide added functionality or construct procedures to meet your specific
needs. If you have limited programming experience, you may want to contact
the Microsoft fee-based consulting line at (800) 936-5200. For more
information about the support options available from Microsoft, please see
the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
Sub Add_Menu()
Dim mymenu
' The following line of code adds "Test" as a new menu on
' the worksheet menu bar.
Application.MenuBars(xlWorksheet).Menus.Add "Test"
' The following line of code adds "Submenu" as a new menu item
' on the Test menu.
Application.MenuBars(xlWorksheet).Menus("Test").MenuItems.AddMenu _
"SubMenu"
' Set mymenu to be the menu items under Submenu.
Set mymenu = Application.MenuBars(xlWorksheet) _
.Menus("Test").MenuItems("SubMenu").MenuItems
With mymenu
.Add "Item1" 'Adds Item1 to Submenu
.Add "Item2" 'Adds Item2 to Submenu
.Add "Item3" 'Adds Item3 to Submenu
End With
End Sub
Sub Del_Menu()
' The following line of macro code removes the
' "Test" menu from the worksheets menu bar.
Application.MenuBars(xlWorksheet).Menus("Test").Delete
End Sub
In Microsoft Excel version 7.0, for more information about creating the Shell function, click Answer Wizard on the Help menu and type:
How do I add menus?
Microsoft Press: "Microsoft Excel Visual Basic Reference," Second Edition,
pages 32-35
Additional query words: 5.00a 5.00c
Keywords : kbcode kbprg PgmHowto
Version : MACINTOSH:5.0,5.0a; WINDOWS:5.0,5.0c,7.0
Platform : MACINTOSH WINDOWS
Issue type : kbhowto
Last Reviewed: June 23, 1999