At runtime I want to check if a certain form is open. I know how to check if a form is open.
I do it like this(where form1 and form2 contain the names of the form)
For Each fForm In Forms
If fForm.Name = Form1 Or fForm.Name = form2 Then
proramm_running = True
Exit Sub
End If
Next
My problem is I want to check if any copy of these forms are open and those would have different names?