allow one person to enter in a form at a time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I set up a form so only one person can enter data at a time? If the
form is open I want it to be read only for all others that open the form.
 
cbwood пишет:
How do I set up a form so only one person can enter data at a time? If the
form is open I want it to be read only for all others that open the form.

VBA: Forms("Your form name").RecordLocks = 2
Design view: Properties - Data - RecordLocks - Edited Record
 
Back
Top