|
-
Jul 9th, 1999, 02:24 AM
#1
Thread Starter
New Member
I am trying to connect to a secure Access 2.0 database using DAO/Jet. I have an ID and password that has full rights, the Admin ID does not have any rights. I need read only rights, but everytime and way I try to connect I get errors. Any ideas????
-
Jul 10th, 1999, 11:46 AM
#2
Lively Member
Hi Jeremy
I have exactly the same setup as you with one difference - it is Access 97.
I use the following code to open my secured db:
Dim ws As Workspace
Dim db as Database
DBEngine.SystemDB = "YourSecuredSystem.mdw"
Set ws = CreateWorkspace("", strUserName, strPassWord, dbUseJet)
Set db = ws.OpenDatabase("YourDatabaseName")
I have never used Access 2.0 - I started with 97 and I don't know what the differences are.
Hope this is of some use.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|