1: What is the result of having the database split, but the FE being on the server as well
A copy of the frontend should be on EACH user's computer. If you don't, then you will suffer the ill effects of
a. slower response times as Access has to transfer ALL objects across the network, including for rendering the forms and reports.
b. much, much greater chance of corruption of the frontend file.
(the link I provided should have specified all of that)
2: Once split, can the FE be copied and pasted anywhere, or are there hard links holding it in a certain location (directory)
The frontend can be placed anywhere, but the users do need to have Read/Write/Delete rights to the folder so the locking file will work.
3: What access rights do the users require to the network drive the BE is stored on
As mentioned the users need Read/Write/Delete rights for the ldb file to be able to be deleted by the database when the last user shuts their frontend and the backend terminates itself.
My situation is that the database will be accessed by a large group of people, spread over a large site. It would be a nightmare to go and copy the FE to each individual computer, so i was hoping to maybe have the FE accessable on a network drive, OR in the initial roll out, have the FE on a network drive and give all users instructions to copy the FE to their computer.
And that is exactly the reason I wrote my Frontend Auto Update Enabling tool, so that the frontends could be automatically updated when I changed versions of the master.
How it works is like this:
1. I make changes to my master which is located on the network in a location able to be accessed by users (Read/Copy rights only necessary on that folder).
2. I change the version numbers in the two tables (one in the frontend and one in the backend).
3. When users open their frontend again, they are greeted with a message saying that their frontend is out of date.
4. The database (FE) will then close
5. Then it will delete itself
6. Then it will copy the new file from the master location
7. And finally it will automatically reopen for the user.
You can find the tool, and documentation, here:
http://www.btabdevelopment.com/main/AccessTools/tabid/78/Default.aspx
Any help with this would be great thanks[/QUOTE]