I have a collection with the same form name
I'd like to select the form that has the matching ID from the collection however since they all have the same name "frmSchoolsFound" I can't use
docmd.selectobject
I'd like to maximise the form
each object in the collection has a hwnd but I still haven't figured this one out yet
I have
Code:If isSchoolOpen(CLng(SchoolID)) = True Then Dim c As Variant For Each c In clnClient If c.Form!NewSchoolsID = SchoolID Then End If Next c Exit Sub End If