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 lrs As ADODB.Recordset
Set lrs = New ADODB.Recordset
With lrs
Set .ActiveConnection = MyConnection
.CursorType = adOpenForwardOnly
.CursorLocation = adUseClient
.LockType = adLockReadOnly
.Open "SELECT * FROM MyTable"
End With