PDA

Click to See Complete Forum and Search --> : Add-In for Excel (VBA)


yurich
Jul 26th, 2004, 08:29 AM
How to build Add-In for Excel (using VBA)?
I need that each Excel loaded my Add-In will show additional menu (says MyMenu) with 2 submenus (says MyMenu1 and MyMenu2) and each submenu runs any Macro (says Macro1 and Macro2). How to write my Add-In in registry?

RobDog888
Jul 28th, 2004, 09:30 PM
One way , since I take it that you want a .dll addin, is to use vb
and create a new Add-In project. Set it for Excel, version
whatever, add OnConnection code, OnDisConnection code, etc.
Compile into a dll....etc.

Or you could create a .xla Excel addin, protected with a password
so users can not view the module code.

HTH