|
-
February 5th, 2001, 03:38 PM
#1
form
How can I tell if a form is loaded?
Thanks!
Erica
-
February 5th, 2001, 03:45 PM
#2
Re: form
if not formname is nothing then 'it's loaded somewhere
end if
-
February 5th, 2001, 03:53 PM
#3
Re: form
When your using an MDI form does it automatically load all its forms? That statement that you gave me won't work...
-
February 5th, 2001, 05:06 PM
#4
Re: form
public Function FormIsLoaded(frmName as string) as Boolean
Dim i as Integer
for i = 0 to Forms.Count - 1
If Forms(i).Name = frmName then
FormIsLoaded = true
Exit Function
End If
next
End Function
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
|