I basically want something that does this:
if (form.isOpen() == true)
form.ShowDialog();
else
form f = new form();
I have a form that displays a list of items added to an order, but when I go to another page and navigate back to make an order form it calls form f = new form();
, which I believe resets the form. Any suggestions of how this can be overcome?