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 db As DAO.Database
Dim rs As DAO.Recordset
Set db = CurrentDb()
Set rs = db.Openrecordset("Select * From SomeTable")
Do Until rs.EOF
SomeValue = rs![SomefieldName]
' ... etc. ...
rs.MoveNext
Loop