G Guest Jul 31, 2006 #1 Access 2003. How can I programmatically determine if a form (say "Print All Reports") is open? Thanks for the help.
Access 2003. How can I programmatically determine if a form (say "Print All Reports") is open? Thanks for the help.
D Dirk Goldgar Jul 31, 2006 #3 Chaplain Doug said: Access 2003. How can I programmatically determine if a form (say "Print All Reports") is open? Thanks for the help. Click to expand... If CurrentProject.AllForms("Print All Reports").IsLoaded Then ' the form is open Else ' it isn't End If
Chaplain Doug said: Access 2003. How can I programmatically determine if a form (say "Print All Reports") is open? Thanks for the help. Click to expand... If CurrentProject.AllForms("Print All Reports").IsLoaded Then ' the form is open Else ' it isn't End If
G Guest Jul 31, 2006 #4 Here something I got from Allen Brown n Access 2000 and later, you can use: If CurrentProject.AllForms("Form1").IsLoaded Then
Here something I got from Allen Brown n Access 2000 and later, you can use: If CurrentProject.AllForms("Form1").IsLoaded Then