Results 1 to 2 of 2

Thread: MDI

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2000
    Posts
    32
    I am having trouble finding a way to return a list of open child windows into an array. I can't find a method that will do this for me. Anyone have any experience with this?

  2. #2
    Guest
    Use the forms collection, and retreive the forms from there.

    Code:
        Dim Form As Form
        For Each Form In Forms
            Debug.Print Form.Name
        Next
    Hope it helps

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width