FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour EasyReport for Antonio
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
EasyReport for Antonio
Posted: Mon Apr 24, 2017 10:25 PM
Dear Antonio,
can you please check if it is possible to change ITEMIDS to character value.
This way we could use user-friendly names to name the fields.
Thanks in advance
Otto
--------------------------------------------------------------------------------------------------

e.g.

[Items]
101=TEXT|Titel |101 |1|1|1|5|8|68|6|2|3|2|1|0|0||0||||||||||||
102=TEXT|Untertitel |102 |1|1|1|14|8|87|5|7|3|2|1|0|0||0||||||||||||
105=TEXT|Druckdatum |105 |1|1|1|14|217|57|4|7|3|2|3|0|0||0||||||||||||
106=TEXT|Company |106 |1|1|1|5|217|57|5|10|3|2|3|0|0||0||||||||||||

Source in Fivewin
PRINTAREA 1 OF oVRD ;
ITEMIDS { 101, 102, 105, 106 } ;
ITEMVALUES { cTitel, cUntertitel, cDruckdatum, cCompany }

101=TEXT|Titel |Title |1|1|1|5|8|68|6|2|3|2|1|0|0||0||||||||||||
102=TEXT|Untertitel |SubTitle |1|1|1|14|8|87|5|7|3|2|1|0|0||0||||||||||||
105=TEXT|Druckdatum |Date |1|1|1|14|217|57|4|7|3|2|3|0|0||0||||||||||||
106=TEXT|Company |Company |1|1|1|5|217|57|5|10|3|2|3|0|0||0||||||||||||


PRINTAREA 1 OF oVRD ;
ITEMIDS { "Title", "SubTitle", "Date", "Company" } ;
ITEMVALUES { cTitel, cUntertitel, cDruckdatum, cCompany }
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: EasyReport for Antonio
Posted: Tue Apr 25, 2017 07:14 AM

Otto,

Could you modify this line this way ?

101=TEXT|Titel,Title |1|1|1|5|8|68|6|2|3|2|1|0|0||0||||||||||||

Notice the "," instead of "|"

Please check what error you get and let me know it

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion