pnjones@gmail.com wrote:
Quote:
I am getting the write conflicit when 2 users access the same record
the first one to save is allowed but the second user gets the message
Write conflicit with the save option greyed out.
>
I have seen this error on many forums and implemented the following
>
See the default for int to 0
Added a field with type timestamp
Updated all the records to ensure all fields contained valid records
>
But i am still getting the error.
>
Although i have added the timestamp field it is blank , my application
does not update this field and i dont know ehere it should get the
timestamp data.
>
Any help please - much appreciated
>
Regards
>
Pat
>
Open up the table that contains the TimeStamp field. YOu could enter
Now() as the Default Value. When a record is first created the value
will be the time it was created.
You could, in the BeforeUpdate event of the form where the records are
added, entere something like
If Me.NewRecord Then Me.DateStampFieldName = Now()