Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best practices for implementing an Microsoft Access application

Where can I find an overview (website) of best practices for implementing an Microsoft Access application (with a FE/BE architecture) regarding to security, performance and maintainability? I know about designing tables, queries, forms and so on and I'm a reasonable programmer, but I'm wondering what's the "best" and most efficient way to implement my Access application.

Thanks in advance for your help.

like image 504
waanders Avatar asked May 03 '10 11:05

waanders


People also ask

How do I develop an Access application?

You can create an app either from a template or from scratch. To create a custom Access app: Open Access 2013 or later and click Custom web app. Enter a name and the server location for your app (you can also select a server location from the Locations list), and click Create.


1 Answers

Take a look at Tony Toews' Best Practices for Microsoft Access. Since you're developing a split application you owe it to yourself to also consider Tony's Auto FE Updater. That utility (which he offers for free) makes it fairly easy to roll out your application front end to the users, and make sure that they are always working from your latest app version.

I will also suggest you try to avoid basing your application's forms on large data sets. For example, rather than binding a form directly to a large table, bind it to a query which returns only one or a few rows from the table. Allow your users to select which row or rows they are interested in at any given time. The point here is to limit the amount of data Access must retrieve when the users open your form.

like image 132
HansUp Avatar answered Sep 19 '22 06:09

HansUp