K
Kelvin Beaton
I get the following error message when I try to edit a value in the query.
It actually give the same error if I try and change it in the table also.
"This record has been changed by another user since you started editing it.
If you save the record, you will overwrite the changes the other user made.
Copy the changes to the clipboard will let you look at the values the other
user entered, and the pass your changes back in if you decide to make
changes."
My options are "Copy to Clipboard" or "Drop Changes"
I have a GetDate() as the default value for "ExceptionTimeStamp" field and I
also have a field that does basically the same thing called
"ExceptionDateRevised"
They both have the defaul value of "GetDate()" but the user can change the
"ExceptionDateRevised" value.
My gut says there's an issues with the two GetDate() defaults... Do I need
to remove on?
I tried removing one GetDate statement, but it seems to have the same
issue...
This is my query:
SELECT tbl_Families.FID, StrConv([Last]+", "+[First],3) AS LastFirstName,
tbl_ExceptionToPolicy.*
FROM (tbl_CaseNotes INNER JOIN tbl_Families ON tbl_CaseNotes.FID =
tbl_Families.FID) INNER JOIN tbl_ExceptionToPolicy ON tbl_CaseNotes.NoteID =
tbl_ExceptionToPolicy.CaseNotesID;
Access 2003 front end
MS SQL Server backend
I backed up and restored the database to a TEST db.
I'm the only one user the TEST db so there is no other user...
Any help would be much appreciated
Kelvin
It actually give the same error if I try and change it in the table also.
"This record has been changed by another user since you started editing it.
If you save the record, you will overwrite the changes the other user made.
Copy the changes to the clipboard will let you look at the values the other
user entered, and the pass your changes back in if you decide to make
changes."
My options are "Copy to Clipboard" or "Drop Changes"
I have a GetDate() as the default value for "ExceptionTimeStamp" field and I
also have a field that does basically the same thing called
"ExceptionDateRevised"
They both have the defaul value of "GetDate()" but the user can change the
"ExceptionDateRevised" value.
My gut says there's an issues with the two GetDate() defaults... Do I need
to remove on?
I tried removing one GetDate statement, but it seems to have the same
issue...
This is my query:
SELECT tbl_Families.FID, StrConv([Last]+", "+[First],3) AS LastFirstName,
tbl_ExceptionToPolicy.*
FROM (tbl_CaseNotes INNER JOIN tbl_Families ON tbl_CaseNotes.FID =
tbl_Families.FID) INNER JOIN tbl_ExceptionToPolicy ON tbl_CaseNotes.NoteID =
tbl_ExceptionToPolicy.CaseNotesID;
Access 2003 front end
MS SQL Server backend
I backed up and restored the database to a TEST db.
I'm the only one user the TEST db so there is no other user...
Any help would be much appreciated
Kelvin