Hello All

I'm a very basic Excel programmer, so be gentle! Can't find anything to guide me with a search so...

I have a bit of code that adds an 'insert date' option to my right click menu - calls a popup calendar form.

The code is in ThisWorkbook of Personal.xls

I then have another bit of code to remove the right click menu option when the workbook closes - to stop me getting the menu option repeated everytime I open a new workbook, resulting in dozens of 'insert date' menu items.

The problem is, my 'remove menu item' bit doesn't seem to work. If I enter the code to remove it in the 'run immediatly' box in VB, it works and removes the offending item. It just doesn't seem to run when I close my workbook - almost as if the BeforeClose event isn't firing.

Any ideas? I'm sure it's probably something pretty basic!

Private Sub Workbook_Open()
    Dim NewControl As CommandBarControl
    Set NewControl = Application.CommandBars("Cell").Controls.Add
    With NewControl
        .Caption = "Insert Date"
        .OnAction = "Module1.OpenCalendar"
        .BeginGroup = True
    End With
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
    On Error Resume Next
    Application.CommandBars("Cell").Controls("Insert Date").Delete
End Sub