visual studio how to create multiple forms code example
Example: visual studio run multiple forms at once
// visual studio run multiple forms at once
// Start the other forms from the Form.Load event of Form1.
private void Form1_Load(object sender, EventArgs e)
{
Form2 form2 = new Form2();
form2.Show();
}