I want to do a find with something like this:
"OrderID LIKE '" & orderID & "' AND SubjectID LIKE '" & recSet("SubjectID" & "'"
That line of code following my recSet.Find gives me an error:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
This error usually means I haven't set the Const for the adBatchOpenOptomistic or whatever, but I have, and this command works in other code... just not with multiple criteria. Any ideas?
"OrderID LIKE '" & orderID & "' AND SubjectID LIKE '" & recSet("SubjectID" & "'"
That line of code following my recSet.Find gives me an error:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
This error usually means I haven't set the Const for the adBatchOpenOptomistic or whatever, but I have, and this command works in other code... just not with multiple criteria. Any ideas?