A Allen Browne Sep 15, 2003 #2 ray said: How do you determine if a form is open? Click to expand... In Access 2002, you can use: If CurrentProject.AllForms("MyForm").IsLoaded Then
ray said: How do you determine if a form is open? Click to expand... In Access 2002, you can use: If CurrentProject.AllForms("MyForm").IsLoaded Then
G GreySky Sep 15, 2003 #3 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
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