Determine if form is open in Access 2002

  • Thread starter Thread starter ray
  • Start date Start date
R

ray

Hello All,

How do you determine if a form is open?

Thanks in advance.
Ray
 
In other versions:

If syscmd(acsyscmdgetobjectstate, acform, "frmYourForm")
<> 0 Then

' it's open (could be design mode, but it's open)

end if


David Atkins, MCP
 

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

Back
Top