I have made up Tracker form in Access 2013 in which end user update their daily routine tasks. I want to keep the table as read-only so that no one can make any unauthorized changes in the existing data.
Is there any way to do that in Access?
I have made up Tracker form in Access 2013 in which end user update their daily routine tasks. I want to keep the table as read-only so that no one can make any unauthorized changes in the existing data.
Is there any way to do that in Access?
One solution would be to
Use a query in place of the table, and change its Recordset Type
property to Snapshot
.
If you want to avoid users opening the table itself, move the table to another database and change the Source property of the table to the path of the other database. In SQL it gives something slike:
SELECT * FROM myTable IN 'f:\test\hidden.mdb'
AFAIK you cannot make a table read only, but you can do a number of things to lock down the database so that the user only has access to forms that are read only.
In Options
deselect:
In the form, set the following properties to No
:
© 2022 - 2024 — McMap. All rights reserved.