I am trying to figure out how to lock a record in a subform once the user moves on to the next record for entering data. But I still want to the user to be able to go back and view other records but not edit the information. Or have a control box that can do this function, once checked off, the record is locked and can only be read only. I don't want the fields to lock upon data entry though, I want the user to be able to select/deselect/add/remove data the entire time they are working on the record, but once they finish and go to the next, or save or click on a control, I want it to all lock and be read only to anyone.
I am using MS Access 2010.
Any help would be appreciated. Thanks!
You could use an integer to store the latest record ID the user has viewed. In the onCurrent event of the subform, check this integer against the ID of the current record. If it is smaller then set the
.Enabled
property of all the controls on the form to False. Else, set them all to true.So you'd want to publicly declare an integer and do something like this in the form's onCurrent event.
Of course, that's not going to prevent people exiting and reloading the DB to edit older records again. If you wanted to secure it better then you could store the ID in a dummy table (with one defined field and one record) instead.
Is it important that the records be rendered read-only sequentially? Because otherwise, it seems as though it'd be far better to just add a boolean field to your table, check that in onCurrent and enable/disable your controls from there.