Determine Directory MDB was Opened From?

  • Thread starter Thread starter Dan
  • Start date Start date
CurrentDb().Name gives you the complete path to the database:
Left$(CurrentDb().Name, Len(CurrentDb().Name) - Len(Dir$(CurrentDb()))) will
give you just the path.
 
If you use A2K or later, you can also use:

CurrentProject.Path

HTH
Van T. Dinh
MVP (Access)
 
Back
Top