Editing in referenced code

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have a database that uses some routines in another .mdb
file. In the VBA-window I have a reference to the
other .mdb file, and the modules are accessible from the
feature tree in the VBA-window.

I can edit the referenced modules - but all changes are
discarded when shut down.

Is there a way to actually save my changes in the
referenced module?

It would make it a lot easier - as opposed to now having
to open the module.mdb and make the changes.
 
I had this problem not being aboe to create a dll, I created an Access
program full of routines that I can call from all my other Access databases.

You have two options:
Edit a referenced module and then export it. Later you can open the file
containing the module and import the edited module.

Open the referenced file directly and then amend it.
 
Back
Top