The automation add in exists as a COM dll - right?
Do you want to access the same instance of the automation addin? I don't
know how to do that. If you want to access an instance then simply add a
reference to the dll in your VBA project.
--
www.alignment-systems.com
"Matthew Wieder" wrote:
I posted in the automation forum as well, but the issue has mroe to do with
Excel since Excel is the only office app the supports "automation add-ins"
(as opposed to "COM add-ins"). Awaiting a response...
"Tom Ogilvy" wrote:
while you are waiting for an answer here why not also post in
microsoft.public.office.developer.automation
microsoft.public.office.developer.programming
--
Regards,
Tom Ogilvy
"Matthew Wieder" wrote:
We have an Automation Add-In that we developed in C# (2.0) which we are
calling from the worksheet in Excel (2003). We want to be able to call
functions in that AddIn from VBA code in teh workbook as well. If it was a
COM Add-IN, we could call
Application.COMAddIns.Item("TestAutomationAddIn.Fu nctions").Object to get a
handle to the AddIn and make calls on it, but the Application.AddIns
Collection (where Automation AddIns are accessed) does not expose the Object
property. How can I get a handle to my Automation AddIn?
thanks!