hatchetman
Programmer
I have a MS Access database that I access from VB through ODBC using ADODB. I want to allow some users of my VB program to have full read/write access to the DB while others should have read-only access. I set up a database password, as well as User permissions at different levels for the tables. How do I utilize the Access DB's User permissions from my VB program? I also set the authorization for ODBC to match the database password.
So far...
Set DBConn = New ADODB.Connection
DBConn.Open DSNName, "doesnt seem to matter", "dbpasswd"
This gives everyone read/write permission. How do I specifiy which User to login from VB?
Thanks,
Dave
So far...
Set DBConn = New ADODB.Connection
DBConn.Open DSNName, "doesnt seem to matter", "dbpasswd"
This gives everyone read/write permission. How do I specifiy which User to login from VB?
Thanks,
Dave