Hello
I have a problem with the Crystal report viewer. If I have a report with paramaters, then I am not able to use the print button. It doesn't show the dialog box for printing (Printmode: PDF). Reports without parameters are printable and show no problems. Someone has an idea ?
This is my code to bring up the CrystalReportViewer:
if (_reportName != string.Empty) { ReportDocument cryRpt = new ReportDocument(); cryRpt.Load(ReportDirectory + report); cryRpt.SetDatabaseLogon(gebruikersNaam, ww); rptViewerWish.ReportSource = cryRpt; rptViewerWish.DataBind(); }