2
Answers

Calling functions in another form.

mark c

mark c

13y
1.8k
1
form1:
 public static void Method1()
{
Method2();
}
private void Method2()
{

}
form2:
 form1.Method1();
Calling Method2() gives:
Error    1    An object reference is required for the non-static field, method, or property
Answers (2)