windows forms and collections

vbstroehle

Newcomer
Joined
Feb 26, 2004
Messages
6
Is it possible to store a windows form in a collection?
I would like to store a number of forms in a collection and then display that form on screen when required by using eg. showdialog
 
Yes

Windows are just a specific type of object, so you can do the same things with them as you can do with all objects: You can create lots of them and put them in all kinds of collections objects like hashtable, queue, stack, arrays etc.
 
Back
Top