firstly you should look at your network setup. If the tables are in another office wirelessly linked... you will get poor performance.
Cables are much better for this type of thing.
I'd also suggest a SQL server option if it's available.
Another option (if it's possible for you) is to have the system copy some records/tables locally on startup, then when the system closes, sync up the changes.
This will cause issues if you users update the same record at the same time, but would speed everything up.
A final option is to have users download their frontend everytime they open it up. This can be achieved by a shortcut to a batch on the server instead of the MDB. This means that any tables with data that doesn't change often can be stored locally rather than on a server, with no issues of syncing. If these tables do change then they will just need to restart the database again. See below the code to stick in a .bat file:
Main Topics
Browse All Topics





by: peter57rPosted on 2009-11-02 at 08:27:35ID: 25720801
Stored queries are just normal select queries that you create through the query grid. ( I use 'saved' queries rather than 'stored' queries but it's neither here nor there).
If you go into the rowsource of a dropdown list and click the build button (...) to the right, you will be dropped into the query grid.You can then save the query and give it a name. WHen you close it you will be asked if you want to update the rowsource and you can say yes.
However, I don't imagine that doing this is going to sort out your slow load times.