I am trying to switch between to form in different project currently I am going this:
this.Hide();
form2 f= new form2();
f.Show();
the new instance of form2 throws a null exception error. But I think because form2 is not active.
How do I work around this or is there a between way to achieve this.
Thinks...