Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to lock records in a collection individually from editing?

Access Howto:

How to lock records in a collection individually from editing?

by  HIM  Posted    (Edited  )
In my case, I has a form with a subform. The subform was populated by a query. Each record had a field of the type Yes/No called Locked. If you checked this field, all related data should be locked for editing. I did this by adding VB code to the BeforeUpdate() event of the forms affected.
if Locked then
cancel=true
else
cancel=false
end if


You can then add additional functionality to this code.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top