Create an Access add-in

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a number of standard functions I have created over time & extensively tested which I would like to bundle into an "Add-in" which I can then add to my distribution databases. For example I have a 'OpenLinkedTable' (used for opening BackEnd tables) & 'GetFileToOpen' (file dialog) routines I use in almost all databases

Where can I get some info on how to do this???
 
Terry said:
I have a number of standard functions I have created over time & extensively tested which I would like to bundle into an "Add-in" which I can then add to my distribution databases. For example I have a 'OpenLinkedTable' (used for opening BackEnd tables) & 'GetFileToOpen' (file dialog) routines I use in almost all databases.

Where can I get some info on how to do this???

In the Help file ;-)

Seriously, I don't know anywhere else. Try looking for
Libraries, Library Database, CodeDb, ???


I think all you have to do is use the Tools - References
menu to add a reference to your functions mdb to use it as a
library. This should make all the public procedures in the
library's standard modules available to your main
applications.
 
Back
Top