Re: [DOTNET] Geeting Instance VB.NET

2002-04-15 Thread Dan Souk
IL PROTECTED] Subject: [DOTNET] Geeting Instance VB.NET Hi people :) Supose that you have a button that opens a new form every time you press it Private sub command1_click ( byval E as .. ) Dim frm as new Form1 frm.show () end sub my question is how do i get the other open instan

Re: [DOTNET] Geeting Instance VB.NET

2002-04-15 Thread Marina Zlatkina
What about putting them in an array if you know how many you'll have in advance, or in something like an ArrayList if you don't? Would that work? You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

[DOTNET] Geeting Instance VB.NET

2002-04-14 Thread Joao Santa Barbara
Hi people :) Supose that you have a button that opens a new form every time you press it Private sub command1_click ( byval E as .. ) Dim frm as new Form1 frm.show () end sub my question is how do i get the other open instances ??? i open several windows and i need to know som