Hi,
I have split my mdb file to Front End and Back end. The point is that the BE remained without Password protection after the splitting. When I'm adding Microsoft Access Password to the BE, The FE can't log into the BE and a message "illegal password" appears.
How can I supply the password from the FE to the BE?
BTW, I tried using this VB code, but it doesn’t seem to work (perhaps I'm not using it correctly..)
Sub OpenProtectedDB()
Dim dbs As DatabaseConst
conFilePath = "C:\Program Files\Microsoft Office\Office\Samples\"
Set dbs = OpenDatabase(conFilePath & "Orders.mdb", False, False, ";pwd=topsecret")End Sub
Thank you for any help,
Avi