Add-ins and Reference library

  • Thread starter Thread starter Glen Mettler
  • Start date Start date
G

Glen Mettler

I need to check if selected add-ins and reference libraries are present when
the user opens the workbook. If they aren't I need to activate them. If
they are not present I need to notify the user.

Is that possible?

Glen
 
Glen,

Here is some code to get you started

Dim addin

For Each addin In Application.AddIns
Debug.Print addin.Name, addin.Installed
addin.Installed = True
Next addin


--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top