psandekian
Programmer
Hi. I'm working on a MDI form and I limit the number of child windows open at one time to 8. My child windows are all the same yet they have different property values. My question is if the user opens 2 child windows and then closes the first child window, how can I refer to this 2nd window as the first? For instance, I set my child forms
When I use this method and the first child window is closed and the second remains, the rest of my code starts a new form. I need to be able to shift things down. So if I have 5 windows open and 3 are closed (in any order), the remaining 2 I need to be frm(0) and frm(1). Is this possible? If so, how?
Thanks.
Patty [sig][/sig]
Code:
dim frm() as frmGraph 'my child form
When I use this method and the first child window is closed and the second remains, the rest of my code starts a new form. I need to be able to shift things down. So if I have 5 windows open and 3 are closed (in any order), the remaining 2 I need to be frm(0) and frm(1). Is this possible? If so, how?
Thanks.
Patty [sig][/sig]