removing an add-in

  • Thread starter Thread starter Douglas Godfrey
  • Start date Start date
D

Douglas Godfrey

I loaded an add in a year or so ago that was a pop up calender when right
clicking on a cell. It no longer works and i've unchecked the box in the
tools/add-in dialog box but while playing around with it i've inadvertently
added about 6 of these to the right click pop up. how do i get rid of these?
 
Hi Douglas

Try either macros:
Sub RestoreIt()
Application.CommandBars("Cell").Reset
End Sub

Sub RestoreIt2()
For Each ctr In Application.CommandBars("Cell").Controls
If Not ctr.BuiltIn Then
ctr.Delete
End If
Next ctr
End Sub


HTH
Cordially
Pascal
 
Back
Top