Duncs
03-18-2009, 06:11 AM
I have a database that is used by several people. As part of the operation, three fields are set when the form opens:
Date modified - Today's Date
User ID - Network logon of the user
Status - Initially set to "In Progress"
When the user completes their work, they click a button which sets the Satus to "Completed" and then closes the form. So, what's my problem?
The query behind the form get all records where the Status field is null. If three people access the form, it presents them with the same record. So, I wanted to save the record so that the Status would be set to "In Progress", and no one else would be able to work it, as the query looks for the Status field being null. However, I can't work out how to save the record.
What am I doing wrong? Is there an easier way to do this?
TIA for your help.
Duncs
Date modified - Today's Date
User ID - Network logon of the user
Status - Initially set to "In Progress"
When the user completes their work, they click a button which sets the Satus to "Completed" and then closes the form. So, what's my problem?
The query behind the form get all records where the Status field is null. If three people access the form, it presents them with the same record. So, I wanted to save the record so that the Status would be set to "In Progress", and no one else would be able to work it, as the query looks for the Status field being null. However, I can't work out how to save the record.
What am I doing wrong? Is there an easier way to do this?
TIA for your help.
Duncs