Hey Guys. I did a Thread hours ago, but I can't find it. I search and use latest.php but nothing. 
Maybe I didn't published it.
I'm using improperly the term "parent" since what I need isn't about inheritance. 
I'm programming in C# and I'm trying to call a Form1 Method from inside and object declared and initialized on Form1. 
Something likes this.
public partial class Form1 : Form
    {
        MyObject o;
        public Form1()
        {
            this.o = new MyObject();
            //Constructor Body
        }
        public void method()
        {
            //Method Body
        }
    }
class MyObject
    {
        form1.method(); //Not any Form1 but the "parent" Form1 class.
    }
I can't search in Google because I don't know what to search, so please help. Thank you in advance for your help.
Leito
Edit: Now I know, It was deleted. Since I posted in a WRONG forum. 