Calling an Add-In

B

BillCPA

I want to run an add-in (specifically, Rob Bovey's Code Documentor) from a
VBA module. I have tried Application.Run "VBACodeDocumentor.xla", but the
error message says it can't find the macro. It is listed in the project
window.

What changes do I need to make?
 
J

Jim Rech

You could just execute its menu item:

CommandBars("Tools").Controls("Document Project").Execute

--
Jim
|I want to run an add-in (specifically, Rob Bovey's Code Documentor) from a
| VBA module. I have tried Application.Run "VBACodeDocumentor.xla", but the
| error message says it can't find the macro. It is listed in the project
| window.
|
| What changes do I need to make?
|
| --
| Bill @ UAMS
 
Top