المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : how to access and run method from main form without creating a new object instance of the form?



C# Programming
09-16-2009, 03:31 AM
Hello, I'm kind of new in C#. How i be able to access a method from my mainform from another form inside another project, but the same solution, without having to create a new object instance of the mainform?

for example, my mainform from project MainModule has a method to localize data, something like this:

public void LocalizeData(CultureInfo culture)
{
//codes here
}


How can i Access that from another project ModuleBody:

public void submit_click(Object sender, EventArgs e)
{
//How to access LocalizeData Method
}

Please help. Thanks.