1

I want the VBA code which can check if the add-in exists in the list of add-ins

Something like

If Application.AddIns("Upload Button") Exists Then
   Application.AddIns("Upload Button").Installed = False
End If

Hit me back!

EDIT: I solved this using On Error Resume Next

On Error Resume Next
Application.AddIns("Upload Button").Installed = False
On Error Goto 0
Community
  • 1
  • 1
Black Dagger
  • 377
  • 2
  • 6
  • 18
  • 2
    http://stackoverflow.com/questions/15951518/add-in-installed-and-referenced – Siddharth Rout Jan 13 '14 at 10:12
  • 1
    @vardhanam You should add that as an answer and accept it instead of editing your question. This removes the question from the Unanswered list so others know your problem has been solved. – thunderblaster Jan 13 '14 at 16:05

0 Answers0