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.
ADO: Dim rs As ADODB.Recordset
Dim cnn As ADODB.Connection
Dim sql_statement as String
sql_statement = "SELECT * FROM Client_Contacts"
Set cnn = CurrentProject.Connection
Set rs = New ADODB.Recordset
rst.Open (sql_statement), cnn, adOpenStatic
DAO: Dim rs As DAO.Recordset
Dim sql_statement as String
sql_statement = "SELECT * FROM Client_Contacts"
Set db = CurrentDb()
Set rs = db.OpenRecordset(sql_statement)