G
Guest
This code calls a subroutine in an external DB:
(code in a module in "ThisDB.mdb")
Dim AppAccess As New Access.Application
With AppAccess
.OpenCurrentDatabase ("c:\MyDir\ThatDB.mdb")
.Run "ThatDB.MySub"
........
QUESTION: is there a comprable method for ThisDB to get results from a
FUNCTION in ThatDB? What if the function returns a complex, user-defined
datatype?
I don't want to create a tools-reference to the external db, is I can avoid
it.
Leonard
(code in a module in "ThisDB.mdb")
Dim AppAccess As New Access.Application
With AppAccess
.OpenCurrentDatabase ("c:\MyDir\ThatDB.mdb")
.Run "ThatDB.MySub"
........
QUESTION: is there a comprable method for ThisDB to get results from a
FUNCTION in ThatDB? What if the function returns a complex, user-defined
datatype?
I don't want to create a tools-reference to the external db, is I can avoid
it.
Leonard