Public Function DbTableExists (
TableName As String,
Optional dbs As DAO.Database = Nothing
) As Boolean
Does the table exist in the database ?
The name of the database table
Look in this database (default to the current database)
Dim b As Boolean
b = xf.Interact.DbTableExists(TableName)
b = xf.Interact.DbTableExists(TableName, dbs)
DbTableExists("tblClinicVisit")