Tab Delimited Export

TurntwoTurntwo Folsom, CA
edited 10:16AM 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 10:16AM
    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

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.