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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top