In my application… to navigate between winforms what i do is that i make an object of the form that needs to be shown and i use
Register reg = new Register()
reg.show();
this thing has two problems
- if i do it with a button, more than
one instance of same form could be
opened. - if i close through which the instance
was created, the child form stays
opend.
what is the solution….
Take a look at this code sample from MSDN code gallery. If you go through the code in detail, you should be good to go