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.
Dim frm As Form, rst As DAO.Recordset, ID as Long
Set frm = Forms!YourFormName
ID=frm!YourPrimaryKeyName
frm.Requery
Set rst= frm.RecordsetClone
rst.FindFirst "YourPrimaryKeyName = " & ID
frm.Bookmark = rst.Bookmark
set rst=nothing
set frm=nothing