DH
Programmer
- Dec 8, 2000
- 168
Is there a way to retreive the current report name using VB and place the report name in a variable?
Not having any luck figuring this one out.
DH
Not having any luck figuring this one out.
DH
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function IsLoaded(MyFormName)
' Accepts: a form name
' Purpose: determines if a form is loaded
' Returns: True if specified the form is loaded;
' False if the specified form is not loaded.
Dim i
IsLoaded = False
For i = 0 To Forms.Count - 1
If Forms(i).FormName = MyFormName Then
IsLoaded = True
Exit Function ' Quit function when found.
End If
Next
End Function