Results 1 to 2 of 2

Thread: form loaded

  1. #1

    Thread Starter
    Hyperactive Member ravi15481's Avatar
    Join Date
    Aug 2002
    Location
    INDIA
    Posts
    421

    form loaded

    hi friends,

    how it identify whether a form is loaded or not at runtime....

    thanx
    A good friend...

  2. #2
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    VB Code:
    1. Public Function IsFormLoaded(ByVal sFormName As String) As Boolean
    2.     Dim frm As Form
    3.     For Each frm In Forms
    4.         If frm.Name = sFormName Then
    5.             IsFormLoaded = True
    6.             Exit For
    7.         End If
    8.     Next
    9. 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
  •  



Click Here to Expand Forum to Full Width