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.
szQuery = "SELECT * " _
& " FROM sys_tblqueries " _
& " WHERE hasRun = false " _
& " AND active = true ORDER BY RunOrder;"
Set adoRSQueries = New ADODB.Recordset
adoRSQueries.Open szQuery, CurrentProject.Connection, _
adOpenStatic, adLockOptimistic
CurrentDb.QueryDefs("tempQuery").SQL = szQuery
CurrentDb.QueryDefs.Refresh
DoCmd.OpenQuery "tempQuery", acViewNormal