
VBA commands to an add-in?
Add-ins work the same as other code modules: you can call their public
functions using
[addin name].[modulename].[Functionname]
But you won't be able to access form controls in the add-in unless the
add-in form was written to allow that. If all else fails you might be able
to do it using SendKeys.
Quote:
> How can I send VBA macro commands to a Word add-in? We're printing to a
> special print driver that has a dialog box that appears ~after~ Word's
> Print dialog, and I want to send text to a control on this dialog. Any
> ideas? Thanks.