Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CurrentProject.AllForms("TheFormName").IsLoaded
Public Function FormIsLoaded(FormName As String, AnyForm As Boolean) As Boolean
FormIsLoaded = CurrentProject.AllForms(FormName).IsLoaded Or (AnyForm = True And Forms.Count > 0)
End Function