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 oConn as ADODB.Connection
Dim oRS as ADODB.RecordSet
Dim i as Long
Set oConn = new Connection
' Open your connection
Set oRS = new RecordSet
oRS.Open tablename, oConn, , , adCmdTable
For i = 0 To oRS.Fields.Count - 1
Debug.Print oRS.Fields(i).Name
Next