Page 1 of 1

Export as CSV problem

Posted: Fri Sep 03, 2010 2:24 am
by whythetorment
Hi,

I'm export a report to CSV. But for some reason the Column headers does not export like it is in the report. If I export it as Excel, then the headers are fine.

The report headers should be :
ARN PolicyNo Status Registration Insured ProductDescription

But It is coming through as
ARN1 PolicyNumber1 Status1 Registration1 Text17 ProductDescription1

Why is that ?

Thanks

Export as CSV problem

Posted: Fri Sep 03, 2010 3:50 am
by Ivan
Hello,

In Csv, Dbf and Xml only textboxes from DataBand are exported ("only data").
For Csv, Dbf and Xml export you should set the following in the Tag property of the StiText component:

Code: Select all

	CSV: "ColumnHeaderName"; DBF: "ColumnHeaderName"; XML: "ColumnHeaderName"
Thank you.