First, you need a backslash before the source location.
VB Code:
  1. FileCopy app.Path & "\FinancialData.mdb", strDBLocation
Second, FileCopy is going to want the name of the file. In other words, if we weren't using a variable, the copy would look like
VB Code:
  1. FileCopy "c:\folder\FinancialData.mdb", "c:\otherfolder\FinancialData.mdb"
Does strDBLocation contain the new folder path AND the db name?