Forms

Hi everyone! I want to make a new form appear when I click a button on the original form. How could I do this

Thanks in advance!



Answer this question

Forms

  • samperiau

    Create a Form class that you want to show.

    Then in the button click event you simply do this:


    FrmMyForm f = new FrmMyForm();
    f.Show();




  • Forms