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 cat As ADOX.Catalog
Dim tbl As ADOX.Table
Dim clm As ADOX.Column
Dim idx As ADOX.index
Dim cnn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim fld As ADODB.Field
Set cnn = CurrentProject.Connection
Set rs = New ADODB.Recordset
Set cat = New ADOX.Catalog
cat.ActiveConnection = CurrentProject.Connection
rs.Open (tbl.Name), cnn, adOpenForwardOnly, adLockReadOnly
Do While Not rs.EOF
For Each fld In rs.Fields
With fld
‘DO WHATEVER
End With
Next
rs.MoveNext
Loop
rs.Close
cnn.Close
Set rs = Nothing
Set cnn = Nothing