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 db As DAO.Database, tdf As DAO.TableDef, fld As DAO.Field
Dim strList As String
Set db = CurrentDb()
Set tdf = db.TableDefs("table name")
For Each fld In tdf.Fields
strList = strList & fld.Name & vbCrLf
Next fld
Set fld = Nothing
Set tdf = Nothing
Set db= Nothing
[text box] = strList