Finding path of installation folder

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

Guest

Is there some way to ask the Access Runtime Module where the user has chosen
to install a packaged Access application?

One can guess that the user will choose the default location, but if he
doesn't, then the application doesn't know where to find its accessory files.
 
CurrentProject.Path - will give the current location of the DB

eg:

Dim strpath As String
strpath = CurrentProject.Path
MsgBox strpath
 
Back
Top