I have a database that whenever you open it, it prompts you for a user name and password. This is a security feature built into Access. Here is the way I am opening the database:
Set dbMaster = OpenDatabase("Networkpath\database97.mdb", , , "User Id=***;Password=***;"
Set dbBackup = OpenDatabase("C:\Backups\Log.mdb", , , "UID=***;PWD=***;"
Am I doing this correctly? Thanks for the help!
Set dbMaster = OpenDatabase("Networkpath\database97.mdb", , , "User Id=***;Password=***;"
Set dbBackup = OpenDatabase("C:\Backups\Log.mdb", , , "UID=***;PWD=***;"
Am I doing this correctly? Thanks for the help!