Strange Error :This action was cancelled by associated objects

  • Thread starter Debug AC via AccessMonster.com
  • Start date
D

Debug AC via AccessMonster.com

After Inserting the record into dataBase and then click on the Form/Refresh
the Form

I get this error
"3426: This action was cancelled by associated objects"


Sample Code

Private Sub Form_AfterUpdate()
'Write additional Record to tblTemp

Me.RecordsetClone.AddNew
Me.RecordsetClone!flTdOrderDetailID = Mid(Me.txtNumber, 5)
Me.RecordsetClone!flTdDateToVHO = txtDateReturned
Me.RecordsetClone!flTdRMANumber = txtMANumber
Me.RecordsetClone!flTdReasonForReturn = txtReasonForReturn
Me.RecordsetClone!flTdNCWarranty = -1
Me.RecordsetClone.Update

End Sub

Can you tell me how to fix this problem?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top