Who has the control?

  • Thread starter Thread starter dindigul
  • Start date Start date
D

dindigul

Access is multisharing. But who has the last laugh? Who has the control? If
used concurrently by many users who decides what goes in? Is there a field
which decides who is the Author? Thanks
 
As soon as anyone enters data into a bound field it will be stored (unless
you have a beforeupdate event to stop it or simlar).

Not really sure what your question is - can you give more details
 
dindigul said:
Access is multisharing. But who has the last laugh? Who has the
control? If used concurrently by many users who decides what goes in?
Is there a field which decides who is the Author? Thanks

When editing the same record whoever saves first wins (optimistic locking).
With pessimistic locking as soon as one user starts editing a record no
other user would be allowed to start editing that same record until the
first user saved their changes.
 
Back
Top