views:

197

answers:

2

Is there any way to export the contents of a Crystal Report to a text File - I am using VS 2005.

+1  A: 

I'd try to export to rtf/html and strip the tags

Axarydax
A: 

Set the ReportDocument object FormatOptions.ExportFormatType = TabSeperatedText, before you call ReportDocument.Export()

Wez