Check If Any Forms Open

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.
 
D

Douglas J. Steele

The Forms collection (part of the Application object) only contains the open
forms, so all you need to do is check Forms.Count
 
M

Mary Fetsch

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
 
Top