Hi pbaldy
I read your article and check my code but my sintax seems correct to me here is the code I'm a newbie so I might be missing something that you might be able to catch
Code:
Private Sub cmdShowRecord_Click()
DoCmd.OpenForm "frmCustomers", acNormal
'declare recordset to hold customer records
Dim rstCust As DAO.Recordset
'load recordset
Set rstCust = Forms!frmCustomers.RecordsetClone
'match EmpID with FindEmp ID
rstCust.FindFirst "fldCustomerID = '" & lstFindCus & "'"
'go to the record
Forms!frmCustomers.Bookmark = rstCust.Bookmark
'close the dialog
DoCmd.Close acForm, "frmGoToRecordDialog"
End Sub
Thank you