i understand that this below code make a overflow because its called second times. this is the explanation, let say i have form1, form2, form3
And in the form1
Form NewForm2 = new Form2;
And in the form3
Form NewForm3 = new Form2;
When i showing form2 of course its stack overflow because its called second times on Form1 and Form3, Okay, so my question is there a way to connect the Form2 from multiple form called it? Any reference?
NewForm2reference to theForm3, when you create the 3rd form.