I can’t figure out why FindFirst won’t work in the following code. I have a table called tblPurchaseOrders and I have a combo box on frmReceivePurchaseOrders in which I want to enter the PO number into the combo box cboMoveTo and selects the correct record.
Private Sub cboMoveTo_AfterUpdate()
Dim rst As Recordset
Set rst = Me!RecordsetClone
rst.findfirst “tblPurchaseOrders.PONum = ” & Me![cboMoveTo] & “”
If Not rst.nomatch Then Me.Bookmark = rst.Bookmark
End Sub
I keep getting the message: Compile error: Method or data member not found.