Access Parent form methods in child form.

Hi EveryOne,

Can any one please tel me how to access parent datasource method or parent form method in child form.

Thanks in advance.

Hi,

something like this:

void childFormMethod()
{
FormRun callerForm = element.args().caller();

if (callerForm)
{
if (callerForm.name() == formstr())
{
callerForm.parentFormMethod();
}
}
}

hi, parent Form method is not access?