Dear Expert,
I'm getting run-time error with this code below:
Please help me.
Thanks
Mir
I'm getting run-time error with this code below:
Code:
Private Sub cboInv_AfterUpdate()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[InvoiceNumber] = " & Str(Nz(Me![cboInv], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Please help me.
Thanks
Mir