Public Function fFindField(strTableName, strFieldName As String) As Boolean
Dim rst As New ADODB.Recordset
rst.Open CurrentProject.Connection.OpenSchema(adSchemaColumns, Array(Empty, Empty, strTableName, strFieldName))
fFindField = Not rst.EOF
End Function
use by:
Call fFindField("YourTableName", "YourFieldName")
Randall Vollen
National City Bank Corp.