KenReay, thank you for the suggestion, but I don't want to fiddle with relinking tables because that would affect other user's who might be using the same (shared) front-end but against a different set of back-end tables.
Does Access have a friendly way of sharing forms and code effectively across databases?
The best/simpliest approach I have considered yet, is the following:
1) Front-end .mdb links the table to K:\backend_data.mdb
2) Application is started from 5-different dos-batch-files. First step of each batch-file is:
subst k: /d REM Delete K: drive-letter
subst k: c:\location_of_backend_database
Then, batch-file then starts the front-end database. The drive-letter mapping would effectively cause the back-end data to be pointing to the desired data.
Although I have tested this, and it works, it seems there is probably a better way of doing this. When I went looking, every approach I have found so far, is very messy. Any other ideas out there?