Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom right click menu in excel onto which I put some buttons. It seems as though the first time I click one of the buttons, it functions as expected but the second time I click the button it throws an exception 0x800A01A8. In another post it is suggested that the button has been released by the GC but my button is not null when this exception is thrown. In addition I store my button in a list that is still in scope when the second call is made. Here is the code:

private void BuildCustomMenu1()
{  
    _command_bar = null;
    _command_bar = StaticSharedObjects.xl.Application.CommandBars["Cell"];

    _popup_root = null;
    _popup_root = _command_bar.Controls.Add(Office.MsoControlType.msoControlPopup, 
                                            Type.Missing, 
                                            Type.Missing, 
                                            Type.Missing, 
                                            true) as Office.CommandBarPopup;

    _popup_root.Caption = "Root Caption";

    _popup_fields = null;
    _popup_fields = _popup_root.Controls.Add(Office.MsoControlType.msoControlPopup, 
                                            Type.Missing, 
                                            Type.Missing, 
                                            Type.Missing, 
                                            true) as Office.CommandBarPopup;

    _popup_fields.Caption = "Popup Caption";

    foreach (var name in _field_names)
    {
        Office.CommandBarButton btn = null;
        btn = _popup_fields.Controls.Add(Office.MsoControlType.msoControlButton,
                                         Type.Missing,
                                         Type.Missing,
                                         Type.Missing,
                                         true) as Office.CommandBarButton;
        btn.Caption = name;
        btn.Style = Microsoft.Office.Core.MsoButtonStyle.msoButtonIconAndWrapCaptionBelow;

        btn.Click += delegate(Microsoft.Office.Core.CommandBarButton Ctrl, ref bool cancel)
        {
            field_name = btn.Caption; // throws: {"Exception from HRESULT: 0x800A01A8"}          
            UseField(field_name);
        };
        _buttons.Add(btn);
    }
}

In the debugger I can definitely verify that the button and the list that stores are definitely still in scope and non-null when the exception is thrown. Any ideas what might be causing this?

Thanks

share|improve this question
I think I figured it out. I was deleting any pre-existing custom menus before creating a new one. I found that if I create the custom menu once only and do not delete it each time before constructing a new one it seems to work as expected. In certain contexts where i don't want it shown, I can just set menu_name.Visible = false. This means the menu still exists but isn't displayed. – Pat Mustard Dec 20 '12 at 8:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.