At my job each computer has read-only access to the Cdrive of the other computers. So here's the problem. I need to store an Access .MDB file on one of the computers (for read-only access). About ten users will connect to it (probably no more than two or three at a time).
With DAO I couldn't connect at all to the "server" machine. The reason is that Access wants to create a log file (.ldb file) in violation of our security policy which states, "You can't create files on another user's computer."
Oledb let me connect, but apparently put me in "exclusive mode" (there was no .ldb file) - another user wasn't able to connect simultaneously with me - only when I closed my connection was he able to connect, so apparently this is "one-user mode" (not good).
I could ask the IT dept to create a public folder on the "server" machine (a folder where everyone has permission to create log files), but I don't think they'd be willing to help me. So at this point I don't have a way to enable two or three simultaneous connections, unless someone has a fresh suggestion.
With DAO I couldn't connect at all to the "server" machine. The reason is that Access wants to create a log file (.ldb file) in violation of our security policy which states, "You can't create files on another user's computer."
Oledb let me connect, but apparently put me in "exclusive mode" (there was no .ldb file) - another user wasn't able to connect simultaneously with me - only when I closed my connection was he able to connect, so apparently this is "one-user mode" (not good).
I could ask the IT dept to create a public folder on the "server" machine (a folder where everyone has permission to create log files), but I don't think they'd be willing to help me. So at this point I don't have a way to enable two or three simultaneous connections, unless someone has a fresh suggestion.