Add-In

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

1) What are the advantages/disadvantages of add-ins versus VBA macros?

2) Will an add-in prevent others from viewing my code?

3) I have received an add-in from the net and was wondering if I could view
the code somehow? I would like to do this for two basic reasons. First, I
would like to confirm/verify that it doesn't contain any viruses. Second, I
would like to understand how it works.

Thanks in advance,

Christmas May
 
1. Add-ins contain VBA Macros in the majority of cases. An add-in is no more
than a workbook that has been saved as an add-in.

2. They won't see the macros or code in Tools>Macro>Macros but will be able to
see the code in the Visual Basic Editor.

Which brings us to.................

3. Hit ALT + F11 then CTRL + r to open Project Explorer. Select the Add-in and
expand to see the Modules. Double-click on a module to open it and see/edit the
macros and code.

Seeing the code will not tell you if it has a virus. Your AV will do that when
you scan the add-in file before installing it.

To prevent others from seeing the code you can password protect the add-in
project.


Gord Dibben MS Excel MVP
 

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