
Originally Posted by
ItsMe
Your English translation is working just fine. Here
PS : I hope my English is not too difficult to understand...
The error you are getting looks like an Access error message. Are you working from one form and opening another form to edit a similar, filtered, recordset?
Use
if me.dirty = true then
me.dirty = false
end if
Just before opening the second form and also in the second form before closing.
If you still get the error, reference the first form from the second form's module before causing edits to the recordset.
if Forms!FormName.dirty = true then
Forms!FormName.dirty = false
end if