Access add-ins

M

Michael T

Please can somehelp me to call an add-in from access vb code - it might look
something like:

DoCmd.Run Tools.Add-Ins.MyAddin

but I cannot seem to get it to work.

All the best,

Michael.
 
A

Amy Blankenship

I think the addin actually has to be added first, from Tools>Addin Manager.

HTH;

Amy
 
G

Guest

You can't get add-ins to work reliably that way in Access 2003.

In Access 2003, if you want to run an add-in like that, you
should load it as a reference instead.

Unload the add-in if it is loaded as an add-in,
then go to the VBA window and find the References menu
item (under Tools? Project?)

(david)
 
Top