1. Split the database to a frontend/backend.
2. Figure out how to initially distribute the frontend to the users. You can choose to have them put it in a common file path (like C:\YourPath) or let them put it where they may.
3. You could then use my Frontend Auto Update Enabling tool to enable auto updating on the frontend. So, what would happen is this -
a. You put the master mdb file on the network in a shared drive accessible to everyone.
b. After enabling that mdb file for auto updating, you distribute the initial file to your users.
c. After distributing, you then can make any changes necessary to your frontend in the master location and change the version number in two tables (one in the frontend and one in the frontend that is linked to the table in the backend).
d. The next time your users open their frontend, the program checks to see if the version numbers match. If they do not, then the db will let the user know that their frontend is out of date, it will close, delete the old file, copy the new frontend from the master location on the network, and automatically reopen for the user.
Then, you never have to distribute again. All you have to do is just worry about making the changes to the frontend master.