|
-
February 9th, 2000, 11:15 AM
#1
Fire only one Form
What is the best way to check the existence of a form? Thanks
-
February 9th, 2000, 03:38 PM
#2
Re: Fire only one Form
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
John Pirkey
MCSD (VB6)
http://www.stlvbug.org
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|