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.
Function fGetDisconnectedRS(ByVal strCon As String, _
ByVal strSQL As String) As ADODB.Recordset
Set fGetDisconnectedRS = New ADODB.Recordset
With fGetDisconnectedRS
.ActiveConnection = strCon
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockBatchOptimistic
.Source = strSQL
.Open
Set .ActiveConnection = Nothing
End With
End Function