Avatar of pcalabria
pcalabria
Flag for United States of America asked on

Getting an Invalid Operation error when code executed from inside an MS Access vba routine

I'm getting an invalid operation message when the following line of code is executed:

                strSQLtext = "UPDATE ComponentMaster SET OrderNumberNoSync = true  WHERE searchnumber='" & strSearchNumber & "' And LineID = " & oRS!LineID
                Set oRS2 = oDB.OpenRecordset(strSQLtext)


When I print strSQLtext in the immediate window, then copy it to a query outside the routine, it runs without issue.
invalid-operation.txt
Microsoft Access

Avatar of undefined
Last Comment
Fabrice Lambert

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Fabrice Lambert

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
pcalabria

ASKER
@Fabrice  Thanks and thanks for the explanation.  I'm sure now I'll remember but the code provided still does not work.  I get a message that says "Could not update; record locked".  I suspect this is because I am cycling though a recordset and now trying to change one of the records in that recordset (but not the recordset at the cursor).  Can you help?
PatHartman

You may have cut off too much of the code.  Put a stop in the code and print the SQL string to the immediate window.  If you don't see the problem, copy it and paste it into the QBE and try to run it from there.

Based on the error message, chances are excellent that the form that is running this code is bound to the form that is running it and the current record is dirty.
Fabrice Lambert

Well, this is another issue, not related to your first question.

Close this post and open a new one.
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck