I have a Windows Forms Application project with multiple forms. How can I jump from one form to another without having to create the form, that is, how can I pass a reference to Form_A to another form, say, Form_T? In other words inside Form_T instead of saying:
Form_A ^ x = gcnew Form_A();
x.Show();
how can I pass a reference to Form_A, created elsewhere, to x.
I would be very grateful for all help.
Form_A ^ x = gcnew Form_A();
x.Show();
how can I pass a reference to Form_A, created elsewhere, to x.
I would be very grateful for all help.