Tab Delimited Export

TurntwoTurntwo Folsom, CA
edited 3:09AM in FastReport .NET
There is a CSV export option, and you can specify the delimiter - is there any way to specify a tab character as the delimiter? I have a state reporting requirement that requires a tab delimited file, and while I could export to excel or csv and then convert to tab delimited, it would be nice to skip that step for my users.

Thanks.

Comments

  • edited 3:09AM
    If you are developer, you can set the tab how a separator from code:
    using FastReport.Export.Csv;
    ...
    ...
    Report report = new Report();
    reprot.Load("report.frx");
    report.Prepare();
    CSVExport export = new CSVExport();
    export.Separator = "\t";
    report.Export(export, "report.csv");
    

Leave a Comment