Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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();
}

Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #visual #studio #run #multiple #forms
ADD COMMENT
Topic
Name
9+2 =