Consider Form1 is the name of the windows form class, then you can create another instance of the form using the following code.
On the button click add the following code
Form1 frm = new Form1();
frm.Show();
I think this will help you,
Regards
Pradeep P
It is not how much we do,
but how much love we put in the doing.
-Mother Theresa
|