I've got a MS Access database with a table and a form, but I want the user to only see the form. I don't want them to be able to edit any of the data. The user should only be able to use the form to query the table. Any suggestions??
|
|
There are a few ways to enforce some control over what users can do. AutoExecThe most simple way is to use an RuntimeA good complement to this approach is to compile your application and force the user to use the Access Runtime to use your application. A good thing to know is that unlike previous versions, the Access 2007 Runtime is free, and that makes Access a very cheap platform to develop for. Runtime emulationWith Access 2007, a simple way to ensure that the application will open as if only the runtime was installed is to change the extension of the database to Secure data-accessNote that short of encrypting the database (but then you have to manage the password), all you can do is make it hard for the user to open the tables manually. Links to resources
|
|||
|
|
|
|
I believe you want to use Access User-Level Security. Here's the documentation at Microsoft. |
||
|
|
|
|
If you are using Access 2003 or earlier, you can use user level security, as mentioned. If you are using Access 2007 you are out of luck - Microsoft in their wisdom removed this ability. You will basically have to write your own login and set permissions on editing etc. using VBA code. |
||||
|
