Fetch properties from backend

Spica

Registered User.
Local time
Today, 23:24
Joined
Aug 3, 2004
Messages
13
I would like to fetch some properties that are stored in a backend-database from the frontend-database. How can I do this?

When I want to fetch a property from the same database this works:

Code:
myString = CurrentDb().Properties("LatestVersion")

But what do I exchange "CurrentDb()" with to get a property from the backend?
 
The following works for a back-end database at C:\BackEnd.mdb:
Code:
Dim dbs As Database

Set dbs = OpenDatabase("C:\BackEnd.mdb")
myString = dbs.Properties("LatestVersion")
dbs.Close

Set dbs = Nothing
 

Users who are viewing this thread

Back
Top Bottom