Page 1 of 1

Update to existing hook

Posted: Wed Oct 23, 2019 10:19 am
by dcrider
Would it be possible to update

Code: Select all

Plugins.HookAddCode(this, "FormPayPlan.Load_end");
to have the PayPlan object added like so?

Code: Select all

Plugins.HookAddCode(this, "FormPayPlan.Load_end", _payPlanCur);

Re: Update to existing hook

Posted: Wed Oct 23, 2019 12:06 pm
by PatrickC
Plugin updated to the following.

Code: Select all

Plugins.HookAddCode(this,"FormPayPlan.Load_end",PatCur,IsNew,_payPlanCur);
Added to version 19.3.16.

Re: Update to existing hook

Posted: Wed Oct 23, 2019 2:09 pm
by dcrider
Thank you!