Error 3426

G

Guest

New to coding - I'm getting a RunTime error 3426_This action was cancelled
by an associated object.

The code looks like this ( Debug high lites the AddNew Line)
Private Sub txtDateReturnedtoVHO_AfterUpdate()
'Write additional Record to tblVendorRepair

Me.RecordsetClone.AddNew

Me.RecordsetClone!fldOrderDetailID = Mid(Me.txtRMANumber, 5)
Me.RecordsetClone!fldDateToVHO = txtDateReturnedtoVHO
Me.RecordsetClone!fldRMANumber = txtRMANumber
Me.RecordsetClone!fldReasonForReturn = txtReasonForReturn
Me.RecordsetClone!fldNCWarranty = -1

Me.RecordsetClone.Update

MsgBox ("Record Written To TblVendorRepair")

The strange part is that at work (Win 2000 and office xp) its ok, at home
(Win XP, office 2000) it doesnt work. However. I put together another PC
at work using win 2000 and office 200 and it doesn't work on that system
either. I checked the references and I made them the same.
 
G

Guest

Acdebug
I ended up upgrading all systems to Office XP. Which I have to believe is
the same as Office 2002
 

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