I was wondering how you would go about opening a form that you have already made from the first form. For example, in a .vb project, I can create two forms, and simply do form2.Show(), and it will show the form with everything I've added to it, etc.. In c#, how would you do this? I've done this so far, because I haven't found another way:
private void menuBar_CheckForUpdates_Click(object sender, EventArgs e)
{
Form updateForm = new Form();
updateForm.Show();
}
However, I want to be able to open the form I created manually, and added controls to. How would I do this? I would rather not place all the controls on the new form in code.