Public Function DbModuleExists (
ModuleName As String,
Optional dbs As DAO.Database = Nothing
) As Boolean
Does the Module exist in the database ?
Look in this database (default to the current database)
Dim b As Boolean
b = xf.Interact.DbModuleExists(ModuleName)
b = xf.Interact.DbModuleExists(ModuleName, dbs)
DbModuleExists("xf_Controls")