Public Function DbFormExists (
FormName As String,
Optional dbs As DAO.Database = Nothing
) As Boolean
Does the Form exist in the database ?
Look in this database (default to the current database)
Dim b As Boolean
b = xf.Interact.DbFormExists(FormName)
b = xf.Interact.DbFormExists(FormName, dbs)
DbFormExists("fmMain")