Hey all, hopefully this is a quick question. I have a button on a form that requeries and send the form to the first record and I am trying to use findfirst to move it back to the desired record.
Right now I am getting an invalid argument on the last line.
Here is the code im usingvb Code:
Private Sub cmdRefresh_Click() Dim rst As DAO.Recordset Dim strCriteria As String 'Save the value for the current record strCriteria = Me.IDString Set rst = Form_frmEditView.RecordsetClone 'Requery the form Me.Requery 'Move back to the original record rst.FindFirst (strCriteria) End Sub


Reply With Quote
