tags:

views:

16

answers:

1

I have a WinForms application. That application have a rich functionality. It can create many windows (System.Windows.Forms.Form). Application is not MDI. I need to enumerate (I need to know) all windows created by that application. It creates windows in the same thread. I mean it doesn't create new process or something.

Of course, I can store a link to a new window created inside an application but it's a difficult solution and doesn't fit me.

+1  A: 

What about OpenForms?

HTH,
Kent

Kent Boogaart
@Kent, thank you for (a) quick answer! It works.
nik