What is the best way to check the existence of a form? Thanks
Printable View
What is the best way to check the existence of a form? Thanks
If you mean, checking to see if a particular form is open, then you could use this:
Dim frm as Form
for Each frm In Forms
If frm.Name = "YourForm" then
MsgBox "The form is open."
End If
next
Hope this helps,
John
John Pirkey
MCSD
www.ShallowWaterSystems.com