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.
DoCmd.OpenQuery "qryYourQuery"
Dim cnn As ADODB.Connection
Dim rst As ADODB.Recordset
Dim strSQL As String
Dim rstArray As Variant
Set cnn = CurrentProject.Connection
Set rst = New ADODB.Recordset
strSQL =
rst.Open strSQL, cnn, AdOpenKeyset
rst.RecordCount
rstArray = rst.GetRows.