rainforestnet / CrystalReportsNinja

A small Windows Console App that loads external Crystal Reports file, takes parameter inputs and export to various format or even print to printer
http://www.rainforestnet.com
94 stars 78 forks source link

Problem with the option -N print #5

Open Mamamouchi opened 6 years ago

Mamamouchi commented 6 years ago

If we used this option we've got the following message "export does not exist". I fix the problem by changing the ReadArguments function and change "-E" statement. else if (parameters[i].ToUpper() == "-E") { OutputFormat = parameters[i + 1]; if (OutputFormat.ToUpper() == "PRINT") { PrintOutput = true; } }