Greg Staley said:
How can I set an Access program / form to allow multiple users at the same
time?
Technically Access is multi-user right out of the box with no need for you to do
anything special except make sure that users open the file in shared mode rather than
exclusive mode. However; in practice, just throwing the MDB into a network share and
pointing all users at it is not recommended. It will perform badly and even more
important it will suffer more corruption problems.
What is recommended is that the application be split into two files, a back end file
with just the tables, and a front end file with everything else. The back end is
then linked to the front end so that the front end works essentially the same as
before only using the links instead of local tables. In this arrangement you can
create as many copies of the front end file as you want and give each user one to
store on their local disk. It is best then to create the links by going through
Network Neighborhood - Entire Network so that a UNC path is used for the links rather
than a mapped drive letter. This way the link path is the same no matter where you
place the front end file.
There are other issues involved in *optimizing* an Access app for multiple users as
far as concurrency and performance is concerned, but that is a larger topic than I
want to cover in a newsnet posting.