Run time error 3426

  • Thread starter Thread starter giannis
  • Start date Start date
G

giannis

Yesterday i ran a code and worked good.
Today i run the same code and i receive in
the line* :
r.AddNew

the following error message :
Run time error 3426
This action was cancelled by an associated object.

What changed from yesterday ?
Where is the wrong today ?

* r is from : Set r = Me.RecordsetClone
 
Why are you trying to add a record to a clone? The idea of a clone is to have a 2nd copy
of a recordset that is identical to the first one.
 
Back
Top