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?
Printable View
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?
Use the forms collection, and retreive the forms from there.
Hope it helpsCode:Dim Form As Form
For Each Form In Forms
Debug.Print Form.Name
Next