> VS2003
>
[quoted text clipped - 4 lines]
>
> It opens a new form everytime...
Of course it does. You're initializing a 'new' object every time.
> But....what if....
> "form1" opened.....
[quoted text clipped - 11 lines]
>
> So how would i show a hidden form
in Form1, add the following
Public Shared myForm as Form1
Then, in the Form1_Load event:
myForm = Me
In other forms, you can access that instance of form1 by calling:
Form1.myForm.<whatever>
HTH,
-Jason
Hareth - 24 Oct 2004 14:10 GMT
Xlnt!!!!.....
>> VS2003
>>
[quoted text clipped - 36 lines]
>
> -Jason