Hi,
I am getting an object reference error when I tried the following code:
In Form 2:
dim refForm1 as Form1
refForm1.Close
If I do this
dim refForm1 as new Form1
refForm1.Close
I don't get an error, but that's a new object so it won't close the form I wanted to.
Now I am opening Form2 from Form1, is that going to be a problem closing the Form1?
Thanks,
Rushdi