FancyPrairie
Programmer
I have 2 databases. One of the databases (lib.mda) is my library database, which is referenced in my other database (my.mdb). I can programmatically list the references in my.mdb. But can't figure out how to list the references in lib.mda.
For example, from my.mdb, I want to call a procedure in lib.mda that will list the references in lib.mda. If I insert the following function in lib.mda, it lists the References in my.mdb. I want it to list the references in lib.mda.
Function ModuleInLib()
Dim ref as Reference
For each ref in References
debug.print ref.name
Next
End Function
Any ideas?
For example, from my.mdb, I want to call a procedure in lib.mda that will list the references in lib.mda. If I insert the following function in lib.mda, it lists the References in my.mdb. I want it to list the references in lib.mda.
Function ModuleInLib()
Dim ref as Reference
For each ref in References
debug.print ref.name
Next
End Function
Any ideas?