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 conn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim fd As ADODB.Field
Dim LPath As String
Dim File As String
LPath = "C:\myDBFFolder\"
File = "myFile.dbf"
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & LPath & ";Extended Properties=dBASE IV;" & _
"User ID=;Password="
rs.CursorLocation = adUseClient
rs.CursorType = adOpenKeyset
rs.Open File, conn
For Each fd In rs.Fields
Debug.Print fd.Name
Next
Set rs = Nothing
Set conn = Nothing