This function enables you to identify whether a form is loaded at runtime. It returns a boolean val
This function enables you to identify whether a form is loaded at runtime. It returns a boolean value to specify whether the form passed as a
Rate This function enables you to identify whether a form is loaded at runtime. It returns a boolean val
(2(2 Vote))
'Declare variable to specify form index
Dim intNoForms As Integer
'Initialize Boolean Value to False
IsLoaded = False
'Loop through all loaded forms to check whether form of interest is loaded
For intNoForms = 0 To Forms.Count - 1
'If specified form is loaded then return true
If Forms(intNoForms).Name = frm Then IsLoaded = True: Exit Function
Next intNoForms
End Function
This function enables you to identify whether a form is loaded at runtime. It returns a boolean val Comments
No comments yet — be the first to post one!
Post a Comment