Share via


CurrentProject.Path Property

Access Developer Reference

You can use the Path property to determine the location where data is stored for a Microsoft Access project (.adp) or Microsoft Access database. Read-only String.

Syntax

expression.Path

expression   A variable that represents a CurrentProject object.

Remarks

You can use the Path property to determine the location of information stored through the CurrentProject or CodeProject objects of a project or database.

Example

The following example displays a message indicating the disk location of the current Access project or database.

Visual Basic for Applications
  MsgBox "The current database is located at " & Application.CurrentProject.Path & "."