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.
Public Function GetMyData() As ADODB.Recordset
Dim artData As ADODB.Recordset
Dim strSQL As String
Dim strConnection As String
strSQL = "select * from tsble"
strConnection = "Your Connection String"
Set artData = New ADODB.Recordset
With artData
.CursorLocation = adUseClient
.Openopen strSQL, strConnection
Set .ActiveConnection = Nothing
End With
Set GetMyData = artData
End Function
Dim obj As MyLib.MyClass
Dim artData as ADODB.Recordset
Set obj = CreateObject("MyLib.MyClass")
set artData = obj.GetMyData
Set obj = Nothing