و يمكنك تعديل المسار كما يلي
Dim wrkDefault As Workspace
Dim dbsNew As Database
Dim prpLoop As Property
' Get default Workspace.
Set wrkDefault = DBEngine.Workspaces(0)
' Make sure there isn't already a file with the name of
' the new database.
If Dir("c:\NewDB.mdb") <> "" Then Kill "c:\NewDB.mdb"
Set dbsNew = wrkDefault.CreateDatabase("c:\NewDB.mdb", _
dbLangGeneral & ";pwd=mm")