Theroretically, at least, you can just copy the *.mdb file to network drive
and create shortcut on users' desktop, so that user can simply double-click
it to run your Access app. But it is not good way to do that if there is
more than one user (that is the reason you want to put it on a netwrok
drive, right?). It may be OK if there is only very few users, say, 3 - 5. It
is also depends on how the database is used.
However, if you want to avoid trouble later, you'd better split the your
Access application into two: backend, containing data tables, which is
sitting in a network drive; frontend, containing forms, reports and all your
code, which is sitting on each user's computer (individual copy on each
computer, not a shortcut pointing to the same frontend file), and ideally,
the frontend is compiled to *.mde file. The frontend links to data in the
backend.