Finding path to _be when located on network drive

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
Using DAO, you can find the path to a linked table using:

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