Camila Piai

Camila Piai

  • NA
  • 7
  • 5.2k

Call a method from another method

May 23 2012 6:37 AM
I'm trying to call a method from another form, but it's not working.
Here's the code:

form1:

public void method1()
{
bla bla bla
}


form2:

form1 frm = new form1();
frm.method1();

Answers (3)