Connecting multiple winforms to one another
How to connect one page of window form to another winform
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dharmendra SinghPosted Feb 9, 2013, 1:12 AM
if I have two from viz- Form1 an Form2 and want to switch Form1 to Form2
on button Click event write code
Form2 ob=new Form2();// Creating Form2 object..
ob.Show();// To show or switching Form2..
this.Hide();// This is for hiding current form i.e. Form1