How to Determine if Form is Open

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Access 2003. How can I programmatically determine if a form (say "Print All
Reports") is open? Thanks for the help.
 
Chaplain Doug said:
Access 2003. How can I programmatically determine if a form (say
"Print All Reports") is open? Thanks for the help.

If CurrentProject.AllForms("Print All Reports").IsLoaded Then
' the form is open
Else
' it isn't
End If
 
Here something I got from Allen Brown
n Access 2000 and later, you can use:
If CurrentProject.AllForms("Form1").IsLoaded Then
 
Back
Top