ACC2: OpenRecordset on Recordset Causes "Invalid Operation"ID: Q120914
|
Moderate: Requires basic macro, coding, and interoperability skills.
When you use the OpenRecordSet method on a Recordset created with the
RecordSetClone property of a form, you may receive the following error
message:
Invalid operation
Instead of creating the Recordset using the RecordSetClone property of the form, base the Recordset on the table or query that is the form's record source. Note that if you opened the form with a filter or a Where clause, or if you later apply a filter to the form, the changes will not be reflected in the Recordset. In such a case, you might want to save the Where condition in a global variable, and then use the variable with the Filter property of the Recordset object.
This behavior no longer occurs in Microsoft Access version 7.0.
Function TestRecordset ()
Dim recordset1 As Recordset
Dim recordset2 As Recordset
Set recordset1 = Forms!Customers.recordsetclone
Set recordset2 = recordset1.OpenRecordset()
End Function
Microsoft Access "Building Applications," version 2.0, Chapter 11, "Working with Sets of Records," pages 241-267
Keywords : kberrmsg kbprg MdlRcd
Version : 2.0
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 7, 1999