Reputation: 31
I am looking for a way to have my form come up locked (so the user cant accidentally modify or delete data) with an edit button or toggle that unlocks all fields.
Is there a button wizard or similar that would allow this, seems like it would be a common question.
This is still my first week in Access and I apologize if this questions is a bit too nooby :)
Thanks all!
Upvotes: 3
Views: 5899
Reputation: 91376
You can set the Allow ... properties.
Me.AllowAdditions = False
Me.AllowEdits = False
Me.AllowDeletions = False
Upvotes: 1