Enumerating forms in an application

  • Thread starter Thread starter Rene
  • Start date Start date
R

Rene

I would like to know if there is a way for cycling through all the forms
that are open in my application.

In VB I would do something like this if I wanted to get the name of all the
open forms:

Dim frm As Form

For Each frm In Forms
MsgBox (frm.Name)
Next

Thank you.
 
Back
Top