Yes Nick,
The following settings are in tools references
Microsoft ActiveX Data Objects 2.1 Library
Microsoft ActiveX Data Objects Recordset 2.5 Library
Microsoft DAO 3.6 Object Library
Simon
Thanks nickjar2,
I tried th following code:
Private Sub CboMoveTo_AfterUpdate()
Dim rst As Object
Set rst = Me.Recordset.Clone
If Not IsNull(Me.cboMoveTo) Then
With rst
.FindFirst "[CustomerID] = " & Me.cboMoveTo
If Not .NoMatch Then...
I have tried all the examples in the books and web sites I can find ... all fail with the same error message
Run Time Error "7951"
You entered an expression that has an invalid reference
to the recordsetclone property.
The debug takes me to the 'set' statement shown below
Dim rst...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.