I have two form: Form1 and Form2. Both of it already have data.
After I scan barcode in Form1, Fom1 will be hidden, Form2 will show and somethings.
After Form2 finish, Form1 will show again and Form2 will be hidden.
It's cycle.
I tried with:
///In Form1
Frm2 Form2 = new Frm2();
Form2.show();
this.Hide();
///In Form2
Frm1 Form1 = new Frm1();
Form1.show();
this.Hide();
But i think it make a new form with no data.
So, how can i unhide form which was hidden?