Skip to content

Commit

Permalink
Added functionality for XLSX. Code from rems94400's update request ra…
Browse files Browse the repository at this point in the history
  • Loading branch information
DIR-twhitfield committed Sep 12, 2023
1 parent 7cbb437 commit 5d9325a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/CrystalReportsNinja/ReportProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ private void ApplyReportOutput()
_reportDoc.ExportOptions.ExportFormatType = ExportFormatType.WordForWindows;
else if (_outputFormat.ToUpper() == "XLS")
_reportDoc.ExportOptions.ExportFormatType = ExportFormatType.Excel;
else if (_outputFormat.ToUpper() == "XLSX")
_reportDoc.ExportOptions.ExportFormatType = ExportFormatType.ExcelWorkbook;
else if (_outputFormat.ToUpper() == "XLSDATA")
_reportDoc.ExportOptions.ExportFormatType = ExportFormatType.ExcelRecord;
else if (_outputFormat.ToUpper() == "ERTF")
Expand Down

0 comments on commit 5d9325a

Please sign in to comment.