Crystal Reports is a welcome subjects for blog posts. I still do like the product, my users are very happy with the results, the report editor is not that bad to work with and the components integrate well into a solution. But Crystal documentation is an absolute disaster. I wanted to add some functionality to my basic export routine. The only thing was adding export to Excel and to html. This functionality is present in the basic Crystal installation but how to use it is something which took me really a lot of Googling. The answers.....................
ON of the Things I Learned Is That You Have To Close () A Report After Exporting. This Was Not in The Official Crystal Example. I Havn't Measured The Effect But It Doesn't Harm.
Exporting to Excel turned out to be just a matter of setting the right content type. This type turned out to be application / vnd.ms-excel. I had expected application / msexcel, as a nice sibling to application / msword. Exporting to Excel Has Some Extra Format Options But you can do without the for a basic export. I'll Leave these for another post.
To get the exporting to html to work took some things which are next to ridiculous, but I got it working. You have to set some format options. In these options you set the root directory and the filename. This directory-filename pair should be identical to the export filename passed to the report. The result will be an html formatted report, but in a "slightly" different location. to find the result you have to do some tricks. When Crystals creates a report is does create a temporary. rpt file. This file is stored in the windows / temp dir, it's name is a guid. When Crystal creates the exported report it creates a directory in the root directory supplied with the name of this guid. in this directory the report will be created ., using the filename supplied Thank goodness the name of the temporary file is available in the FilePath property of the report This snippet demonstrates the workaround:. string [] fp = selectedReport.FilePath.Split ( "//" ToCharArray ().) String Leafdir = fp [fp.length-1] ; // strip .rpt extensionleafdir = leafdir.substring (0, Leafdir.Length - 4); TempFileNameused = String.Format ("{0} {1} // {2}", Tempdir, Leafdir, TempFileName);
To sum it all Up:
protected void exportReport (CrystalDecisions.CrystalReports.Engine.ReportClass selectedReport, CrystalDecisions.Shared.ExportFormatType eft) {selectedReport.ExportOptions.ExportFormatType = eft; string contentType = ""; // Make sure asp.net has create and delete permissions in the directory string tempDir = System.Configuration.ConfigurationSettings.AppSettings [ "TempDir"]; string tempFileName = Session.SessionID.ToString () ; switch (eft) {case CrystalDecisions.Shared.ExportFormatType.PortableDocFormat ".": tempFileName = "pdf "; contentType =" application / pdf "; break; case CrystalDecisions.Shared.ExportFormatType.WordForWindows: tempFileName =" doc "; contentType =" application / msword "; break; case CrystalDecisions.Shared.ExportFormatType.Excel: tempFileName =" xls "; ContentType =" Application / VND.MS-Excel "; Break; Case Crystaldecisions.Shared.ExportFormattype.html32: Case Casestal Decisions.Shared.ExportFormatType.HTML40: tempFileName = "htm"; contentType = "text / html"; CrystalDecisions.Shared.HTMLFormatOptions hop = new CrystalDecisions.Shared.HTMLFormatOptions (); hop.HTMLBaseFolderName = tempDir; hop.HTMLFileName = tempFileName; selectedReport.ExportOptions.FormatOptions = hop; break;} CrystalDecisions.Shared.DiskFileDestinationOptions dfo = new CrystalDecisions.Shared.DiskFileDestinationOptions (); dfo.DiskFileName = tempDir tempFileName;
selectedReport.ExportOptions.DestinationOptions = dfo; selectedReport.ExportOptions.ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile; selectedReport.Export (); selectedReport.Close (); string tempFileNameUsed; if (eft == CrystalDecisions.Shared.ExportFormatType.HTML32 | | EFT == crystaldecisions.shared.exportFormattype.html40) {string [] fp = SELECTEDREPORT.FILEPATH.SPLIT ("//". TOCHARARRAY ()); string leafdir = fp [fp.length-1]; // Strip. rpt extension leafDir = leafDir.Substring (0, leafDir.Length - 4); tempFileNameUsed = string.Format ( "{0} {1} // {2}", tempDir, leafDir, tempFileName);} else tempFileNameUsed = tempDir tempFileName; Response.ClearContent (); Response.ClearHeaders (); Response.ContentType = contentType; Response.WriteFile (tempFileNameUsed); Response.Flush (); Response.Close (); System.IO.File.Delete (tempFileNameUsed); . .............. ..