I can show form2 from form1 with this:
and I can get it to close using the close method.Code:
form2.show()
the problem, however, is that when I go for a second showing of it, I get this message:
Cannot access a disposed object named "Form2".
I dim an instance of it in the declaration section of form1(that's where I'm showing and closing it)
what causes this and what do I do to be able to show it multiple times?
