Nel

Nel

  • NA
  • 716
  • 1.1m

Opening a form by clicking the button in another form

Aug 10 2011 6:14 AM
Hello,
I try from one form by clicking the button to open another form. I put this code, but nothing happens:

private void button1_Click(object sender, EventArgs e)
{
Izvest frm = new Izvest();
frm.Show();
}


Can anybody tell me please where is my error.
The second form's name is Izvest.
Thanks.


Answers (15)