Check If Any Forms Open

  • Thread starter Thread starter Mary Fetsch
  • Start date Start date
M

Mary Fetsch

In access 2000, is there an easy way to check to see if any forms are open?
I don't want to check a particular form. I just want to know if any forms
are open, or to put it another way, if all forms are closed.
 
The Forms collection (part of the Application object) only contains the open
forms, so all you need to do is check Forms.Count
 
Thanks a lot!

Douglas J. Steele said:
The Forms collection (part of the Application object) only contains the open
forms, so all you need to do is check Forms.Count
 
Back
Top