Newbie C# form question

how can i load a form...

im usin one form and i want to open another form as a modal one, how can i load it


Answer this question

Newbie C# form question

  • tonyheupel


    <b>//from inside the button click event on Form1</b>

    Form2 temp = new Form2();
    temp.ShowDialog();

  • Newbie C# form question