Search found 38 matches

by michael
Tue Apr 16, 2013 11:02 am
Forum: Main Forum
Topic: Bug in ortho chart
Replies: 4
Views: 7510

Re: Bug in ortho chart

Fixed. Fix will be in 13.1.22. The new growth behavior in the grid has been a little buggy. It wasn't letting you save if the grid grew at all. It is because the date is stored in an unusual way here, and we were losing that data during the resize.
by michael
Thu Apr 11, 2013 1:08 pm
Forum: Main Forum
Topic: Bug in ortho chart
Replies: 4
Views: 7510

Re: Bug in ortho chart

Verified bug. It looks like you just need a shift+enter in one of the cells to get this error. I'm looking into it. Is this how you got the error?
by michael
Mon Apr 08, 2013 9:40 am
Forum: Developers
Topic: Hook Request
Replies: 8
Views: 14048

Re: Hook Request

It'll be in 13.1.19.

Ln 2303 of FormOpenDental.cs

Code: Select all

			if(Plugins.HookMethod(this,"FormOpenDental.FillPatientButton_popups",pat,PopupEventList,patChanged)) {
				return;
			}
by michael
Wed Mar 27, 2013 4:17 pm
Forum: Developers
Topic: Hook Request
Replies: 8
Views: 14048

Re: Hook Request

These hooks have been added. Ln 839 of FormStatementOptions.cs Plugins.HookAddCode(this,"FormStatementOptions_Load_end"); Ln 2306 of FormOpenDental.cs if(Plugins.HookMethod(this,"FormOpenDental.FillPatientButton_popups",pat,PopupEventList)) { return; } They will be in 13.1.18. We have also updated o...
by michael
Thu Mar 21, 2013 2:53 pm
Forum: Developers
Topic: How to Export Data in HL7 Format
Replies: 1
Views: 4712

Re: How to Export Data in HL7 Format

It is unlikely that you can export the data you want in HL7 format. The only outgoing HL7 messages we currently support are DFT messages. It would be possible to setup outgoing HL7 messages that would export some data about procedures that were done, but that is pretty much it. All of your data in O...
by michael
Wed Mar 20, 2013 9:30 am
Forum: Developers
Topic: Another Hook needed
Replies: 2
Views: 5448

Re: Another Hook needed

Hook was added as

Code: Select all

Plugins.HookAddCode(this,"FormModuleSetup_Load_end");
and will be released with version 13.1.16.
by michael
Wed Mar 20, 2013 9:29 am
Forum: Developers
Topic: Add Hook Request
Replies: 3
Views: 6464

Re: Add Hook Request

Hook was added as

Code: Select all

Plugins.HookAddCode(this,"FormReportsMore.FormReportsMore_Load_beginning");
and will be released with version 13.1.16.
by michael
Mon Nov 26, 2012 3:28 pm
Forum: Developers
Topic: Hook Request
Replies: 2
Views: 5910

Re: Hook Request

Hook:

Code: Select all

Plugins.HookAddCode(null, "Appointments.SetConfirmed_end", aptNum, newStatus);
was added to version 12.4.21 (beta).
by michael
Mon Oct 01, 2012 7:03 am
Forum: Main Forum
Topic: Signing remotely
Replies: 34
Views: 66557

Re: Signing remotely

We use the .NET SDK.
by michael
Thu Sep 27, 2012 1:45 pm
Forum: Main Forum
Topic: CallFire Changed?
Replies: 6
Views: 15548

Re: CallFire Changed?

Carefully follow the steps on our website here: http://www.opendental.com/manual/textMessages.html . Be sure not to click any of the links at the top of callfire's website until you log in. They will all take you to the wrong site. Once you sign up using the link from our site you will automatically...
by michael
Mon Jul 16, 2012 11:34 am
Forum: Developers
Topic: HookAddCode request for deposit slip reconciliation
Replies: 5
Views: 10469

Re: HookAddCode request for deposit slip reconciliation

The hook has been added. It will be available with version 12.3.3.
by michael
Mon Oct 03, 2011 11:21 am
Forum: Developers
Topic: 2 hook requests :)
Replies: 7
Views: 16027

Re: 2 hook requests :)

Hook has been changed according to Jordan's specification in the head and in the beta version (11.1).
by michael
Thu Sep 29, 2011 9:06 am
Forum: Developers
Topic: 2 hook requests :)
Replies: 7
Views: 16027

Re: 2 hook requests :)

Code: Select all

Plugins.HookAddCode(null,"Claims.GetOutInsClaims_end",command);
has been added to Claims.cs and

Code: Select all

Plugins.HookAddCode(this,"FormRpOutstandingIns.butRefresh_begin");
has been added to FormRpOutstandingIns.cs.

These will be in 11.0.31 and 11.1.1 (beta).
by michael
Tue Sep 27, 2011 6:40 am
Forum: Developers
Topic: Hook update request
Replies: 4
Views: 11686

Re: Hook update request

The hook has been modified and will be released with 11.0.30(beta).
by michael
Tue Jul 19, 2011 6:32 am
Forum: Developers
Topic: One more hook
Replies: 13
Views: 28624

Re: One more hook

Hook has been moved. It is in the new location in 11.05 (beta).
by michael
Thu Jul 14, 2011 6:12 am
Forum: Developers
Topic: One more hook
Replies: 13
Views: 28624

Re: One more hook

You should be able to use the sender ( FormOpenDental / this ) to access ContrAppt2. Otherwise you may just need the hook inside ContrAppt. We won't use ContrAppt2 as the sender, because its not the sender. Sending ContrAppt2 was a mistake that we will correct when we move the hook. So, can you conf...
by michael
Wed Jul 13, 2011 1:06 pm
Forum: Developers
Topic: One more hook
Replies: 13
Views: 28624

Re: One more hook

So, right now it looks like if(Plugins.PluginsAreLoaded) { Plugins.HookAddCode(ContrAppt2,"FormOpenDental.LayoutControls_bottom"); } I'm not sure why we are passing ContrAppt2 instead of this . Did we discuss this? I'm proposing changing it to if(Plugins.PluginsAreLoaded) { Plugins.HookAddCode(this,...
by michael
Thu Apr 28, 2011 9:24 am
Forum: Developers
Topic: One more hook
Replies: 13
Views: 28624

Re: One more hook

The property PluginsAreLoaded has been added to the head.

Simply use if(PluginList.PluginsAreLoaded) {} to enclose any code that requires the Plugins.

Also, your hook has been added as:

Code: Select all

Plugins.HookAddCode(ContrAppt2,"FormOpenDental.LayoutControls_bottom");
at line 2458 of the head.
by michael
Thu Mar 31, 2011 12:41 pm
Forum: Developers
Topic: Hook request
Replies: 3
Views: 8738

Re: Hook request

Eight hooks were added. 1. Plugins.HookAddCode(this,"FormProcEdit.butSetComplete_Click_end",ProcCur,ProcOld,textNotes); (ln 3301) 2. Plugins.HookAddCode(this,"ContrChart.menuItemSetComplete_Click_procLoop",procCur,procOld); (ln 7360) 3. Plugins.HookAddCode(null,"Procedures.SetCompleteInAppt_procLoop...
by michael
Thu Mar 31, 2011 10:51 am
Forum: Developers
Topic: Hook request
Replies: 3
Views: 8738

Re: Hook request

If I counted correctly it looks like there are all together 7 hook requests. These will be added soon. I'll let you know when they are.
by michael
Mon Mar 14, 2011 11:13 am
Forum: Developers
Topic: Scheduling Bug
Replies: 2
Views: 7229

Re: Scheduling Bug

This bug has been fixed. Watch for its release on the bug tracker. Listed as "Appointments can be created that overlap other appointments."
by michael
Mon Mar 14, 2011 7:43 am
Forum: Developers
Topic: Hook request: OnPatient_Click (FormOpenDental)
Replies: 5
Views: 12326

Re: Hook request: OnPatient_Click (FormOpenDental)

Thanks. Changing that now.
by michael
Thu Mar 10, 2011 11:54 am
Forum: Developers
Topic: Hook request: OnPatient_Click (FormOpenDental)
Replies: 5
Views: 12326

Re: Hook request: OnPatient_Click (FormOpenDental)

The code Plugins.HookAddCode(this,"FormOpenDental.OnPatient_Click_end"); and Plugins.HookAddCode(this, "ContrAppt.ContrApptSheet2_MouseLeave_end"); was added to the corresponding classes/methods. Note this differs slightly from your request, specifically adding "_end" to the first one and "ContrAppt...
by michael
Fri Mar 04, 2011 9:23 am
Forum: Main Forum
Topic: version 7.6
Replies: 8
Views: 10595

Re: version 7.6

The select patient will now search for any last name containing the text in the search criteria when it is more than three letters. Three letters and less only gives you names starting with that text. This is a new features. As for the progress notes sometimes cutting off text, this is fixed but not...
by michael
Mon Jan 24, 2011 12:36 pm
Forum: Advanced Topics
Topic: Rx print bug when Addr2 field filled out
Replies: 3
Views: 5481

Re: Rx print bug when Addr2 field filled out

We cannot tell for sure if this is a bug without the exact sheet. Please export the sheet to XML and PM me that file.
by michael
Tue Nov 09, 2010 5:45 am
Forum: Developers
Topic: hook change request
Replies: 5
Views: 8742

Re: hook change request

Hook has been moved as requested and will be released with version 7.5.4.
by michael
Wed Nov 03, 2010 10:47 am
Forum: Developers
Topic: Microsoft SQL
Replies: 31
Views: 83299

Re: Microsoft SQL

Advertising from Oracle suggests big improvements to MySQL (http://www.oracle.com/dm/11q1field/58124_mysql_5.5.html). I think MySQL may have better support under Oracle than it did under Sun.

Is Oracle providing better support of MySQL? Does this change anything?
by michael
Mon Oct 18, 2010 4:51 am
Forum: Developers
Topic: Feature request falling back on hook request
Replies: 1
Views: 3898

Re: Feature request falling back on hook request

This hook has been added to version 7.3.6.
by michael
Fri Oct 15, 2010 2:30 pm
Forum: Developers
Topic: hook change request
Replies: 5
Views: 8742

Re: hook change request

The new hook has been added in 7.3.6 and the old one will be removed in 7.4.1.
by michael
Thu Sep 16, 2010 6:28 am
Forum: Developers
Topic: PatientSelected Event Not Firing
Replies: 3
Views: 6352

Re: PatientSelected Event Not Firing

Hook was added yesterday. It will be available for use with version 7.2.41.

You are welcome.
by michael
Thu Sep 16, 2010 5:58 am
Forum: Developers
Topic: FormOpenDental.Load_end hook problem
Replies: 6
Views: 8703

Re: FormOpenDental.Load_end hook problem

I'm not sure exactly what your goal is. Are you trying to get both plugins to run, or just the right one in a specific case? Some additional background information may help. I'm guessing you want to run a different hook in each place. The standard we use is to have the hook name match the class name...
by michael
Fri Sep 10, 2010 11:33 am
Forum: Developers
Topic: HookAddCode request - end of LayoutToolbar's in MainModules
Replies: 6
Views: 10477

Re: HookAddCode request - end of LayoutToolbar's in MainModules

Small change was made. Instead of passing PatCur.PatNum, PatCur was passed to avoid a null pointer exception. Again, this hook will be released with 7.2.39.
by michael
Fri Sep 10, 2010 8:38 am
Forum: Developers
Topic: HookAddCode request - AppointmentL.GetSearchResults
Replies: 6
Views: 8987

Re: HookAddCode request - AppointmentL.GetSearchResults

Right. Done. The hook "AppointmentL.GetSearchResults_postfilter" is in place and ready for use in version 7.2.39.
by michael
Fri Sep 10, 2010 8:07 am
Forum: Developers
Topic: HookAddCode request - FormApptEdit.CalculateTime_end
Replies: 6
Views: 9141

Re: HookAddCode request - FormApptEdit.CalculateTime_end

Requested parameters were added to the CalculateTime_end hook in version 7.2.39.
by michael
Fri Sep 10, 2010 8:06 am
Forum: Developers
Topic: HookAddCode request - end of LayoutToolbar's in MainModules
Replies: 6
Views: 10477

Re: HookAddCode request - end of LayoutToolbar's in MainModules

LayoutToolBar_end hooks added to the main modules (except Staff which does not have the LayoutTooldBar function) in version 7.2.39.
by michael
Fri Sep 10, 2010 7:37 am
Forum: Developers
Topic: HookAddCode request - AppointmentL.GetSearchResults
Replies: 6
Views: 8987

Re: HookAddCode request - AppointmentL.GetSearchResults

It looks like this won't happen right away as GetSearchResults is a staic method, and our policy is to send the object as the sender parameter in the HookAddCode function, but with a static method the object does not necessarily exist, so you cannot pass this as the sender object. Would it work to a...
by michael
Tue Sep 07, 2010 8:17 am
Forum: Main Forum
Topic: Database Maintenance deletes my schedule notes
Replies: 2
Views: 4596

Re: Database Maintenance deletes my schedule notes

This problem has been fixed and will be released with versions 7.1.40 and 7.2.38.
by michael
Wed Aug 04, 2010 8:53 am
Forum: Developers
Topic: Some HookAddCode requests
Replies: 6
Views: 9147

Re: Some HookAddCode requests

These changes will be released with OpenDental 7.2.7.