calling functions of a COM-Add-In from VBA-code

S

Steve

Yes it is. If you have a reference to your COM object you would just treat
it like any other object in VBA. I would recommend that you late bind to
your COM object (Dim X as Object: Set X = CreateObject("My.GUID")) so that
you don't have to worry about distrabution being broken by changes in GUID
values.

~Smitch
 

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

Top