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....