Search found 7 matches

by 321Practice
Sun Dec 29, 2019 7:54 pm
Forum: Developers
Topic: Hook Change
Replies: 1
Views: 3928

Hook Change

In ContrApptJ.cs, could you add to the hook, changing Plugins.HookAddCode(this,"ContrAppt.MouseDownAppointment_menuApt_right_click",menuApt); to Plugins.HookAddCode(this,"ContrAppt.MouseDownAppointment_menuApt_right_click",menuApt,contrApptPanel.SelectedAptNum); I used to grab the appt from contrApp...
by 321Practice
Sat Oct 19, 2019 6:34 am
Forum: Developers
Topic: Hook Request
Replies: 2
Views: 4849

Re: Hook Request

Thank you!
by 321Practice
Tue Oct 15, 2019 9:10 pm
Forum: Developers
Topic: Hook Request
Replies: 2
Views: 4849

Hook Request

Could you please add the following hook at the end of 'FillFields' in 'SheetFiller.cs' right before the return:

Code: Select all

Plugins.HookAddCode(null, "SheetFiller.FillFields_end", sheet, stmt, pat);
Thank you!
John
by 321Practice
Sun Dec 09, 2018 5:08 pm
Forum: Developers
Topic: Hook Requests
Replies: 6
Views: 7189

Re: Hook Requests

Also, while we're at it, can you consider making ContrImages.SelectTreeNode() public?

ContrImages.FillDocList() is already public which allows us to refresh the image tree. It would be nice to also select a node and have the doc displayed.

Thank you!
John
by 321Practice
Sat Dec 08, 2018 8:59 am
Forum: Developers
Topic: Hook Requests
Replies: 6
Views: 7189

Re: Hook Request: FormConfirmationSetup

Do you mind adding another? I want to modify the payment amount InputBox before it's displayed. In ContrAccount.cs around line 3761: ); Plugins.HookAddCode(this, "ContrAccount.ToolBarMain_ButtonClick_paymentInputBox", inputBox, PatCur); if (inputBox.ShowDialog()!=DialogResult.OK) { break; } Thanks!
by 321Practice
Sun Nov 25, 2018 6:29 pm
Forum: Developers
Topic: Hook Requests
Replies: 6
Views: 7189

Re: Hook Request: FormConfirmationSetup

Just realized I used the wrong capitalization. This instead:

Plugins.HookAddCode(this, "FormConfirmationSetup.Load_end");

Thanks!
by 321Practice
Sun Nov 25, 2018 11:04 am
Forum: Developers
Topic: Hook Requests
Replies: 6
Views: 7189

Hook Requests

In OpenDental/Forms/FormConfirmationsSetup.cs

At the end of FormConfirmationSetup_Load like this:

public void FormConfirmationSetup_Load(object sender,System.EventArgs e) {
FillTabManualConfirmation();
Plugins.HookAddCode(this, "FormConfirmationSetup.Load_End");
}

Thanks!
- John