record locking (1 Viewer)

ingrid

Registered User.
Local time
Today, 23:52
Joined
Apr 10, 2003
Messages
42
When a record is locked (because an other user has it open) access block the possibily to enter text. Some users are confused by that.

Is it possible when a user opens a record that is locked to give a msgbox that the record is locked?
 

Shadez

Registered User.
Local time
Today, 23:52
Joined
Jan 20, 2003
Messages
192
I suggest having a look at the

.RecordLocks

property of the form.
 

ingrid

Registered User.
Local time
Today, 23:52
Joined
Apr 10, 2003
Messages
42
I did. The "edited record" option is on. But I want to check of a selected record is locked at the moment the user opens it, something like this

If record=locked Then
msgbox "Record is locked, you can't change the data"
End If
 

Shadez

Registered User.
Local time
Today, 23:52
Joined
Jan 20, 2003
Messages
192
ingrid said:
I did. The "edited record" option is on. But I want to check of a selected record is locked at the moment the user opens it, something like this

If record=locked Then
msgbox "Record is locked, you can't change the data"
End If

I would think it went somethink like this


Code:
if me.recordlocks = 2 then
       msgbox "Record is locked, you can't change the data"
end if
 
Last edited:

Shadez

Registered User.
Local time
Today, 23:52
Joined
Jan 20, 2003
Messages
192
Also, read the paragraph in bold

RecordLocks Property


You can use the RecordLocks property to determine how records are locked and what happens when two users try to edit the same record at the same time. When you edit a record, Microsoft Access can automatically lock that record to prevent other users from changing it before you are finished.

Forms. Specifies how records in the underlying table or query are locked when data in a multiuser database is updated.


Reports. Specifies whether records in the underlying table or query are locked while a report is previewed or printed.


Queries. Specifies whether records in a query (typically an action query in a multiuser database) are locked while the query is run.

Note The RecordLocks property only applies to forms, reports, or queries in a Microsoft Access database (.mdb).

Setting

The RecordLocks property uses the following settings.

Setting Visual Basic Description
No Locks 0 (Default) In forms, two or more users can edit the same record simultaneously. This is also called "optimistic" locking. If two users attempt to save changes to the same record, Microsoft Access displays a message to the user who tries to save the record second. This user can then discard the record, copy the record to the Clipboard, or replace the changes made by the other user. This setting is typically used on read-only forms or in single-user databases. It is also used in multiuser databases to permit more than one user to be able to make changes to the same record at the same time.
In reports, records aren't locked while the report is previewed or printed.

In queries, records aren't locked while the query is run.

All Records 1 All records in the underlying table or query are locked while the form is open in Form view or Datasheet view, while the report is previewed or printed, or while the query is run. Although users can read the records, no one can edit, add, or delete any records until the form is closed, the report has finished printing, or the query has finished running.
Edited Record 2 (Forms and queries only) A page of records is locked as soon as any user starts editing any field in the record and stays locked until the user moves to another record. Consequently, a record can be edited by only one user at a time. This is also called "pessimistic" locking.


You can set this property by using a form's property sheet, a macro, or Visual Basic.

Note Changing the RecordLocks property of an open form or report causes an automatic recreation of the recordset.

Remarks

You can use the No Locks setting for forms if only one person uses the underlying tables or queries or makes all the changes to the data.


In a multiuser database, you can use the No Locks setting if you want to use optimistic locking and warn users attempting to edit the same record on a form. You can use the Edited Record setting if you want to prevent two or more users editing data at the same time.


You can use the All Records setting when you need to ensure that no changes are made to data after you start to preview or print a report or run an append, delete, make-table, or update query.

In Form view or Datasheet view, each locked record has a locked indicator in its record selector.

Tip To change the default RecordLocks property setting for forms, click Options on the Tools menu, click the Advanced tab on the Options dialog box, and then select the desired option under Default Record Locking.

Data in a form, report, or query from an Open Database Connectivity (ODBC) database is treated as if the No Locks setting were chosen, regardless of the RecordLocks property setting.


Remember Help is your friend
 
Last edited:

ingrid

Registered User.
Local time
Today, 23:52
Joined
Apr 10, 2003
Messages
42
this:

if me.recordlocks = 2 then
msgbox "Record is locked, you can't change the data"
end if


gives a msgbox every time a record is used, but I only want the msgbox when an other user is using the same record at the same time.
 

Users who are viewing this thread

Top Bottom