Public Function DbReportExists (
ReportName As String,
Optional dbs As DAO.Database = Nothing
) As Boolean
Does the Report exist in the database ?
Look in this database (default to the current database)
Dim b As Boolean
b = xf.Interact.DbReportExists(ReportName)
b = xf.Interact.DbReportExists(ReportName, dbs)
DbReportExists("rptVisitReport")