+ Reply to Thread
Results 1 to 2 of 2

Shortcut Popup Menu?

  1. #1
    Ricky S
    Guest

    Shortcut Popup Menu?

    How can I add my own command to the shortcut popup menu in excel? I've
    copied the exsample out of the help file and when I run the macro I get this
    error message.
    "Invalid procedure call or argument" the code is as follows

    Set myMenuBar = CommandBars.ActiveMenuBar
    Set newMenu = myMenuBar.Controls.Add(Type:=msoControlPopup, _
    Temporary:=True)
    newMenu.Caption = "Custom"
    Set ctrl1 = newMenu.Controls _
    .Add(Type:=msoControlButton, ID:=1)
    ctrl1.Caption = "Import"
    ctrl1.TooltipText = "Import"
    ctrl1.Style = msoButtonCaption

    The debuger stops at the "Ser newMenu =" line.
    There must be an easy way. I just want to add my macro to the shortcut menu.




  2. #2
    Edwin Tam
    Guest

    RE: Shortcut Popup Menu?

    I'm not sure what you was meant by "shortcut popup menu". I assume it is the
    shortcut menu when you right-click on the worksheet.

    Try the following code. Copy and paste into a module, and run
    "add_menu_item". You can use the same method to modify any menu. Just replace
    the name of the "cell" menu with your target menu name.

    '--------------------------------------
    Sub add_menu_item()
    With Application.CommandBars("Cell").Controls
    With .Add(msoControlButton)
    .Caption = "My Item"
    .OnAction = "my_macro"
    End With
    End With
    End Sub

    Private Sub my_macro()
    MsgBox ("Hello")
    End Sub
    '--------------------------------------

    Regards,
    Edwin Tam
    edwintam@vonixx.com
    http://www.vonixx.com


    "Ricky S" wrote:

    > How can I add my own command to the shortcut popup menu in excel? I've
    > copied the exsample out of the help file and when I run the macro I get this
    > error message.
    > "Invalid procedure call or argument" the code is as follows
    >
    > Set myMenuBar = CommandBars.ActiveMenuBar
    > Set newMenu = myMenuBar.Controls.Add(Type:=msoControlPopup, _
    > Temporary:=True)
    > newMenu.Caption = "Custom"
    > Set ctrl1 = newMenu.Controls _
    > .Add(Type:=msoControlButton, ID:=1)
    > ctrl1.Caption = "Import"
    > ctrl1.TooltipText = "Import"
    > ctrl1.Style = msoButtonCaption
    >
    > The debuger stops at the "Ser newMenu =" line.
    > There must be an easy way. I just want to add my macro to the shortcut menu.
    >
    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1