Get contacted by recruiters directly with our newest chat feature!
Register now or log in to join your professional community.
Let say that you are loading Form1 and want to run Form2:
Form2 frm = new Form2();
Form2.Show();
Or
using(Form2 frm = new Form2())
{
frm.ShowDialog();
}
Cancel Report Answer