Search found 13 matches

by japonte
Wed Nov 06, 2013 11:58 am
Forum: Developers
Topic: Configure Web Service in Development Environment
Replies: 2
Views: 4655

Re: Configure Web Service in Development Environment

Thanks, you helped me a lot !
by japonte
Fri Nov 01, 2013 2:37 pm
Forum: Developers
Topic: Configure Web Service in Development Environment
Replies: 2
Views: 4655

Configure Web Service in Development Environment

Hi, I found the instructions to configure the web service here http://www.opendental.com/manual/middletier.html, but is there a way to configure the web service without running opendental setup? How can I do it manually for a development environment?
by japonte
Thu Jul 18, 2013 10:20 am
Forum: Developers
Topic: Print medical stories with more than one page
Replies: 4
Views: 5787

Re: Print medical history with more than one page

I am referring to the medical history section in the Medical window.
I shared the code to achieve this. Might be useful for someone else: viewtopic.php?f=5&p=21927#p21927
by japonte
Thu Jul 18, 2013 10:16 am
Forum: Developers
Topic: Print a Medical History with more than one page
Replies: 2
Views: 7016

Print a Medical History with more than one page

I changed the file FormMedical.cs to allow the printing of a Medical History with more than one page. I share the code: 1) Replace the CreateDocument() method with the following code: //This method, along with CreateDocument() allow the printing of a Clinical History of more than one page. private v...
by japonte
Wed Jul 17, 2013 11:09 am
Forum: Developers
Topic: Print medical stories with more than one page
Replies: 4
Views: 5787

Re: Print medical stories with more than one page

Sorry, I meant "Medical history"
by japonte
Wed Jul 17, 2013 10:28 am
Forum: Developers
Topic: Print medical stories with more than one page
Replies: 4
Views: 5787

Print medical stories with more than one page

Is there a way to print medical stories with more than one page?
Would I have to customize the code to achieve this?
by japonte
Wed Jul 10, 2013 9:53 am
Forum: Developers
Topic: Translation of Daily Payments report
Replies: 1
Views: 3253

Translation of Daily Payments report

Do I have to edit PaymentsRDL.txt to translate the Daily Payments report?
by japonte
Fri Jun 07, 2013 1:13 pm
Forum: Developers
Topic: Missing translations
Replies: 2
Views: 3799

Missing translations

Missing some translations in the form FormProviderSelect, in the butMove_Click and butCreateUsers_Click methods.
by japonte
Wed Jun 05, 2013 11:10 am
Forum: Developers
Topic: The Procedure Codes window not show wrapped text on descript
Replies: 1
Views: 3171

The Procedure Codes window not show wrapped text on descript

Is there a way by code to show description wrapped in the Procedure Codes window?
by japonte
Wed May 01, 2013 5:54 pm
Forum: Developers
Topic: Some controls are not being translated (Corrected)
Replies: 6
Views: 7634

Re: Some controls are not being translated (Corrected)

Some controls are is not being translated: - gridMain In FormRecallLIst.cs. Changed: "col=new ODGridColumn(fields .InternalName,fields .ColumnWidth);" by "col = new ODGridColumn(Lan.g("TableRecallList", fields .InternalName), fields .ColumnWidth);" and "col=new ODGridColumn(fields .Description,field...
by japonte
Mon Apr 29, 2013 5:32 pm
Forum: Developers
Topic: Some controls are not being translated (Corrected)
Replies: 6
Views: 7634

Some controls are not being translated (Corrected)

Some controls are is not being translated:
- gridMain In FormRecallLIst.cs.
- gridWaiting In ContrAppt.cs, gridEmpSche In ContrAppt.cs, groupSearch In ContrAppt.cs.
- gridMain in FormInsPlans.cs
- listRelathionship in FormGuardianEdit.cs. (Enum GuardianRelationship)
by japonte
Tue Apr 23, 2013 1:19 pm
Forum: Developers
Topic: gridMain at FormApptsOther not translate columns
Replies: 1
Views: 3443

gridMain at FormApptsOther not translate columns

When I load FormApptsOther, I see that the columns of the grid gridMain are not translated, debugging I can see that when tranlation occurs, gridMain Columns are empty.
A solution could be move Lan.F(this); from FormApptsOther() to the end of FormApptsOther_Load()