Hi,
I created a form F with method M and class C, i want to call method M in class C.
Ths.
Hi,
I created a form F with method M and class C, i want to call method M in class C.
Ths.
In class C:
Object formRunObject;
;
if (args.caller() && formHasMethod(args.caller(), identifierstr(M)))
{
formRunObject = args.caller();
formRunObject.M();
}
it’s working.
thank you.