Click to See Complete Forum and Search --> : Fire only one Form


February 9th, 2000, 10:15 AM
What is the best way to check the existence of a form? Thanks

Johnny101
February 9th, 2000, 02:38 PM
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