Update to existing hook

This forum is for programmers who have questions about the source code.
Post Reply
User avatar
dcrider
Posts: 67
Joined: Sun Sep 29, 2019 11:03 am
Contact:

Update to existing hook

Post by dcrider » Wed Oct 23, 2019 10:19 am

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);

PatrickC
Posts: 56
Joined: Thu Jun 06, 2019 11:37 am

Re: Update to existing hook

Post by PatrickC » Wed Oct 23, 2019 12:06 pm

Plugin updated to the following.

Code: Select all

Plugins.HookAddCode(this,"FormPayPlan.Load_end",PatCur,IsNew,_payPlanCur);
Added to version 19.3.16.
Patrick Carlson
Open Dental Software
http://www.opendental.com

User avatar
dcrider
Posts: 67
Joined: Sun Sep 29, 2019 11:03 am
Contact:

Re: Update to existing hook

Post by dcrider » Wed Oct 23, 2019 2:09 pm

Thank you!

Post Reply