how to go to another form in c# code example
Example 1: how to travel from one form to another in C#
private void btnLogin_Click(object sender, EventArgs e)
{
this.Close(); //Close Form1,the current open form.
Form2 frm2 = new Form2();
frm2.Show(); // Launch Form2,the new form.
}
Example 2: how to go to other forms in C#
introduction Intro = new introduction();
this.Hide();
Intro.ShowDialog();