I'm using Visual Studio 2005 Team Suite which I believes has Crystal Reports 10 installed.
I'm trying to export to a text file. Here's the code I have so far:
DiskFileDestinationOptions diskOpts =
ExportOptions.CreateDiskFileDestinationOptions();
// set the export format
ExportOptions exportOpts = new ExportOptions();
exportOpts.ExportFormatType =
ExportFormatType.RichText;
exportOpts.ExportDestinationType =
ExportDestinationType.DiskFile;
diskOpts.DiskFileName = AbsolutePath("c:/pleasework.txt");
exportOpts.ExportDestinationOptions = diskOpts;
_crReportDocument.Export(exportOpts);
Is RichText the only text option I have?? I've been googling and it sounds like I may need to install a dll to export to text. Can anyone confirm that?
Thanks much...
I'm trying to export to a text file. Here's the code I have so far:
DiskFileDestinationOptions diskOpts =
ExportOptions.CreateDiskFileDestinationOptions();
// set the export format
ExportOptions exportOpts = new ExportOptions();
exportOpts.ExportFormatType =
ExportFormatType.RichText;
exportOpts.ExportDestinationType =
ExportDestinationType.DiskFile;
diskOpts.DiskFileName = AbsolutePath("c:/pleasework.txt");
exportOpts.ExportDestinationOptions = diskOpts;
_crReportDocument.Export(exportOpts);
Is RichText the only text option I have?? I've been googling and it sounds like I may need to install a dll to export to text. Can anyone confirm that?
Thanks much...