Advertisement
ASP_Volume3 Miscellaneous #53711

IsFormLoaded?

A simple method to check if a form is loaded without referencing a property (such as .visible) that would in turn load the form.

AI

Riepilogo AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Codice sorgente
original-source
Public Function IsFormLoaded(ByVal FormName As String) As Boolean
  Dim frm As Form
  
  For Each frm In Forms
    If LCase(frm.name) = LCase(FormName) Then IsFormLoaded = True
  Next frm
End Function
Commenti originali (3)
Recuperato da Wayback Machine