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!
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!
Forms
samperiau
Then in the button click event you simply do this:
FrmMyForm f = new FrmMyForm();
f.Show();