Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
help file said:Requerying a form invalidates any bookmarks set on records in the form.
Private Sub EmployeeID_Click()
Dim empID As Integer
Dim strWhere As String
empID = Me.EmployeeID
strWhere = "EmployeeID = " & empID
'code execution stops when you open a dialog form
DoCmd.OpenForm "frmEmployees", , , strWhere, , acDialog
'code execution resumes when dialog form closed
Me.Requery
Me.Recordset.FindFirst strWhere
End Sub