Possible Duplicate:
Operation must use an updatable query. (Error 3073) Microsoft Access
I am using the code below:
CurrentDb.Execute "INSERT INTO calldata([username], [reportnumber], [reportdate], [custconcern], [cc], [as]) " & _
" VALUES('" & Me.cboopenedby & "','" & Report_Number & " ','" & _
Me.txtopenedon & "','" & Me.cboconcern & " ','" & strCustconcernfixtxt & " ','" & strActionfixtxt & "')"
And it is working fine in Access 2007 but when given to someone in 2010 they get:
Runtime Error 3073 - Operation Must Use an Updateable Query
Any ideas?