How can I identify an MDIform (parent) when I'm looping through the forms collection?
Here's the problem:
When I loop to find the child forms:
For each frm in Forms
If frm.MDIChild Then ...
The 2nd line there fails when it hits the MDI "parent" since it has no .MDIChild property to check!
So, what I'd like to do is something like:
For each frm in Forms
If "NOT an MDI parent form" then
If frm.MDIChild Then ...
Thanks, DaveBo




Reply With Quote