Hello
Trying to do something that seems so straighforward
but it's driving me up the wall. Have standard MDI
interface, with WindowList in MDI menu. so far, so good.
How do I access the list of child forms displayed under
WindowList. I know I can access the child forms using the code below but it's annoying that I can't access the windowlist list!
For Each f In Forms
If (Not TypeOf f Is MDIForm) Then
If (f.MDIChild = True) Then
MsgBox f.Caption
End If
End If
Next f
thanks
kate
Trying to do something that seems so straighforward
but it's driving me up the wall. Have standard MDI
interface, with WindowList in MDI menu. so far, so good.
How do I access the list of child forms displayed under
WindowList. I know I can access the child forms using the code below but it's annoying that I can't access the windowlist list!
For Each f In Forms
If (Not TypeOf f Is MDIForm) Then
If (f.MDIChild = True) Then
MsgBox f.Caption
End If
End If
Next f
thanks
kate