Search found 49 matches

by Stavros Spanos
Tue Apr 09, 2024 8:46 am
Forum: 3rd party products
Topic: RPWin.ini interfering with Χ# app (RPro 3.0)
Replies: 1
Views: 154

RPWin.ini interfering with Χ# app (RPro 3.0)

Hello all! In VO we didn't have any RpWin.ini to deal with, so this is new to us. Suddently while testing our X# apps we realised that some date properties used to change suddently from 99-99-9999 to 99-99-99 in all date controls. Also other properties like SetEpoch were changed to 1900 etc. We then...
by Stavros Spanos
Wed Apr 03, 2024 9:10 am
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

Because the DBF's are temporary files for the report need stored in the Workstations Temp folder, while the full WorkDir resides on a Server parh (ex. F:\..) Also, even ommiting this line, the problem persists (case-2). Stavro, since your dbfs are in the c:\temp folder, then why are you setting the ...
by Stavros Spanos
Wed Apr 03, 2024 6:31 am
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

The dbf files are located at C:\Temp not the workdir() folder.
The problem also exists if ommiting this line at case_2
by Stavros Spanos
Tue Apr 02, 2024 1:04 pm
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

oReport:LoadReport("C:\Temp\_TEST.RPT") oReport:SetTableStringAttribute( 1, "Orbtemp", RP_TABLE_ATTR_DRIVER, "DBFCDX" ) oReport:SetTableStringAttribute( 1, "Orbtemp", RP_TABLE_ATTR_TABLE, "C:\Temp\Salestmp.dbf" ) oReport:SetTableStringAttribute( 1, ...
by Stavros Spanos
Tue Apr 02, 2024 9:56 am
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

i set manually all the directories at the code at both apps.
by Stavros Spanos
Tue Apr 02, 2024 6:50 am
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

ok i upload the X# app without the ReportPro Dlls
by Stavros Spanos
Mon Apr 01, 2024 12:58 pm
Forum: 3rd party products
Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
Replies: 15
Views: 758

ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs

There are 2 reports that use DBF files. DBF files are located to folder C:\Temp\ When previewing and printing the reports via a VO app everything is ok. VO app uses ActiveX ReportPro.Runtime.39. At X# app we use the ReportPro 3 for X#(3.6.0.4) dlls. The problems that occur at X# are the below. Case ...
by Stavros Spanos
Thu Mar 21, 2024 9:52 am
Forum: Product
Topic: Where is Voerror.log?
Replies: 0
Views: 172

Where is Voerror.log?

Hi all!

Trying to do the fine tuning of out apps in X#, we miss a lot Voerror.log. Is there a way to have something like it in X#?

We use VStudio for development.
by Stavros Spanos
Fri Sep 29, 2023 2:05 pm
Forum: VO & Vulcan
Topic: Successful Conversion to X# 2.5b
Replies: 13
Views: 4919

Re: Successful Conversion to X# 2.5b

Arne, we use directives to the compiler. Like... #IFDEF __XSHARP__ PostMessage( oControl:Handle(), WM_LBUTTONDOWN, 0, 0 ) PostMessage( oControl:Handle(), WM_LBUTTONUP, 0, 0 ) #ELSE PostMessage( SELF:Handle(), WM_LBUTTONDOWN, 0, 0 ) PostMessage( SELF:Handle(), WM_LBUTTONUP, 0, 0 ) #ENDIF So all job i...