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("YourTableOrQuery")
rs.MoveLast
For x = 1 To 10
Me.ListX.AddItem rs!YourField
rs.MovePrevious
Next