I have created a new menu that contains individual buttons which is suppose to launch each of the other forms that I had created beforehand.
The quotes I've been using to open the new forms after clicking on one of the buttons doesnt seem to work. ANyone got any ideas on the syntax that i need to use to open up a new form after clicking on the button.

private void button1_Click(object sender, EventArgs e)
    {
    Form2 f2 = new Form2();
    f2.Show();
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.