Here I am once again,
Calling a method in the same object is easy, calling it from one form to another one is explained in gazillion tutorials and posts.
I have form with tab inside and two other tabs inside that.
I was trying to implement some caller, but I'm doing something wrong.
Method I want to call is a part of listView, lets name is MyListView, on the tab and I'm using it to populate it.
public void MethodToCall()
{}
I'm trying to deploy it during form opening so:
void Init()
{
object caller = new object();
;
caller.MethodToCll(); //there is nothing like it inside caller object.
}
Is there any other way to run this method from another, or call MyListView from init level?
init method does not recognize any other method but those directly in form, "on the same level".