i tried this.
Open excel
hit alt-f11 (to get to the VBE)
hit ctrl-g (to see the immediate window)

type this and hit enter:
application.commandbars("cell").reset
No luck..

I tried this code
sub ResetCB() 
    Dim cCom As CommandBar 
     
    On Error Resume Next 
     
    For Each cCom In Application.CommandBars 
        cCom.Reset 
    Next cCom 
     
    On Error Goto 0 
End Sub
No luck...