Search found 49 matches
- Mon Apr 15, 2024 7:01 am
- Forum: 3rd party products
- Topic: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
- Replies: 15
- Views: 1559
Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
OK Chris, this is fixed - thanks!
- Tue Apr 09, 2024 8:46 am
- Forum: 3rd party products
- Topic: RPWin.ini interfering with Χ# app (RPro 3.0)
- Replies: 1
- Views: 774
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 ...
- 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: 1559
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 ...
- 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: 1559
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
The problem also exists if ommiting this line at case_2
- 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: 1559
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, "Orbtemp", RP_TABLE_ATTR_INDEX_FILE, "C:\Temp ...
- 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: 1559
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.
- 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: 1559
Re: ReportPro 3 for X#(3.6.0.4) Problems with reports using DBFs
ok i upload the X# app without the ReportPro Dlls
- 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: 1559
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 ...
- Thu Mar 21, 2024 9:52 am
- Forum: Product
- Topic: Where is Voerror.log?
- Replies: 0
- Views: 435
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.
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.
- Fri Sep 29, 2023 2:05 pm
- Forum: VO & Vulcan
- Topic: Successful Conversion to X# 2.5b
- Replies: 13
- Views: 5576
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 ...