I have a combo box on a form that I use to allow for a quick search facility. The field that is being searched does not contain unique values, therefore I would like the user to be prompted to be able to find the next record and the next and the next.... etc... after the first record is found. This is the current code:
Private Sub cmbFindDOJobNo_AfterUpdate()
' Used to find the record that matches the control.
DoCmd.ShowAllRecords
Me!DOJobNo.SetFocus
DoCmd.FindRecord Me!CmbFindDoJobNo
Me!CmbFindDoJobNo.SetFocus
Me!CmbFindDoJobNo = ""
Me!CmbFindDoJobNo.Requery
End Sub