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 rs as New Recordset
Dim FieldFound as Boolean
dim f as integer
FieldFound = False
rs.Open "SELECT * FROM TableName WHERE 1=0", ConnectionObject
For f = 0 to rs.Fields.Count - 1
If rs.Fields(f).Name = "FieldName" Then
FieldFound = True
End If
Next f
Dim cat as Catalog
Dim fld as Field
Set cat = New ADOX.Catalog
cat.ActiveConnection = con 'Open ADO Connection object
For Each fld in cat.Tables("TableName")
If fld.Name = "Your Field Name" Then
'Field Exists
End If
Next
dim fld As Field
set rs = con.Execute("SELECT * FROM Table1")
For Each fld in rs.Fields
If fld.Name = "Your name" Then
'field exists
End If
Next