How do I know whether a form is open or not

R

Ryan

From VBA I want to make a condition based on another form
being open or not.

How do I determine that a form is open?
 
P

PC Datasheet

Look in the standard modules of the Northwind sample database for the
IsLoaded function. It works like this:
IsLoaded("MyForm")
The function returns True if MyForm is loaded and False if not laoded.
 
Top