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 }