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 oCat As New ADOX.Catalog
Dim oTable As New ADOX.Table
Dim strResult As String
oCat.ActiveConnection
"provider=Microsoft.jet.oledb.4.0;" & _
data source = C:\test.mdb"
For Each oTable In oCat.Tables
strResult = strResult & oTable.Name & " " & _
oTable.Type & vbCrLf
Next
MsgBox strResult