Here, I'll demonstrate how to verify the caller form's name. In the init() method of the form, I'm verifying the caller form's name.
public void init()
{
super();
FormRun formRun = this.args().caller();
if (formRun.name() == formStr(WHSLoadTable))
{
statements...;
}
}
public void init()
{
super();
FormRun formRun = this.args().caller();
if (formRun.name() == formStr(WHSLoadTable))
{
statements...;
}
}
*This post is locked for comments