R Ryan Dec 20, 2004 #1 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?
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 Dec 20, 2004 #2 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.
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.