WiseJ project opens up as Windows Desktop application

0
0

What is the reason when I open Crystal Report project in Visual Studio 2017, it opens up as normal desktop application, how can I open it up as WiseJ project?

  • You must to post comments
0
0

You cannot use the Crystal Reports windows forms viewer on the web. Use the PdfViewer instead like this:

 var report = new ReportDocument();
 report.FileName = Application.MapPath("CrystalReport1.rpt");
 this.pdfViewer1.PdfStream = report.ExportToStream(ExportFormatType.PortableDocFormat);

 

 

Attachment
  • You must to post comments
0
0

Please see the screenshot of ASPNetReportViewer project, I have downloaded from Support Link to use ReportViewer control but the project is opening up as normal Windows application.

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.