Ensuring that an accessible add-in is properly installed and workable : AddIns « Application « VBA / Excel / Access / Word






Ensuring that an accessible add-in is properly installed and workable

 
Private Sub Workbook_Open()
   AddIns.Add FileName:=ThisWorkbook.FullName
   AddInTitle = "title"
   Application.EnableEvents = False
   AddIns(AddInTitle).Installed = True
   Application.EnableEvents = True
End Sub

 








Related examples in the same category

1.Filling in for Excel's missing add-in properties