You need to split your application it two files:
1.) Frontend with all datbase objects except tables
2.) Backend with only the tables
Place your backend file on the server and link all tables into your frontend file.
Install this frontend file on the clients.
ATTENTION: the drive with the backend needs to have the same drive letter on all clients!!
The clients need READ/WRITE and DELETE (very important!) rights on the server directory.
Furthermore, you need an error trapping procedure (lock errors), your application's queries and table structure (indexes, normalization) needs to be optimized and a automatic backup of the backend is veryveryveryvery important (risk of damaged backend if clients are not disciplined).
Think also of securizing the frontends (MDE format is an advatage) and if your backend data needs protection be aware that the tables can no longer be linked into the frontends.
There are a couple of other important details that I do not have the time to write down, I strongly recommend the "Network"-section of the ACCESS ONLINE ENCYCLOPEDIA (
for details.
Fran