I could not declare a form to use in another form like this:
Form1.h ——— //A complete & correct form
Form2.h ——— Form1 * F1 = new Form1(); // incorrect
Why?Please help me to solve the problem. Thank you.