Tools Links Login

IsLoadedForm

Tells whether a form is loaded or not

Original Author: Luca Faiazza

Inputs

ByVal pObjForm As Form

Returns

Boolean value

Code

Public Function IsLoadedForm(ByVal pObjForm As Form) As Boolean
  Dim tmpForm As Form
  For Each tmpForm In Forms
    If tmpForm Is pObjForm Then
      IsLoadedForm = True
      Exit For
    End If
  Next
  
End Function

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 97 times

Categories

Visual Basic 6

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.