Finding path to _be when located on network drive

C

CD Tom

In my network I have the backend loaded on a network drive in some cases and
with other customers everything is loaded on their local machine. Is there a
way in code to locate the backend database and find the path to the drive.
Thanks for any help
 
D

Douglas J. Steele

Using DAO, you can find the path to a linked table using:

CurrentDb().TableDefs("NameOfLinkedTable").Connect
 
Top