Re: Is form Open?
From: StCyrM (stcyrm_at_aol.com)
Date: 10/06/04
- Next message: John Vinson: "Re: Limit number of characters in field"
- Previous message: Dave Elliott: "Re: NZ is sometimes a Negative?"
- In reply to: Lyle: "Is form Open?"
- Messages sorted by: [ date ] [ thread ]
Date: 06 Oct 2004 01:21:21 GMT
Hi Lyle
You can use the following function to check if the a form is loaded.
Best Regards
Maurice St-Cyr
Micro Systems Consultants, Inc.
Function FormIsLoaded(MyFormName As String) As Boolean
'
' Determines if a form is loaded.
'
Dim i As Integer
FormIsLoaded = False
For i = 0 To Forms.Count - 1
If Forms(i).FormName = MyFormName Then
FormIsLoaded = True
Exit Function ' Quit function once form has been found.
End If
Next i
End Function
>I need to have one form check to see if another form is open. Anyone know
>how to do this??
>Thanks,
>Lyle
- Next message: John Vinson: "Re: Limit number of characters in field"
- Previous message: Dave Elliott: "Re: NZ is sometimes a Negative?"
- In reply to: Lyle: "Is form Open?"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|
Loading