How do I know whether a form is open or not

  • Thread starter Thread starter Ryan
  • Start date Start date
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?
 
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.
 
Back
Top