cancel
Showing results for 
Search instead for 
Did you mean: 

crystal report without crystal report viewer asp.net

Former Member
0 Kudos

Please help me to design crystal report without report viewer in asp .net.

Surojit.

Accepted Solutions (1)

Accepted Solutions (1)

former_member188030
Active Contributor
0 Kudos


For designing Crystal report, we do not need viewer but CR designer.

You could design the reports with any standalone or bundled Crystal Designer such as CR 2008 / Cr 2011 / CR for VS 2010.

Could you elaborate on what exactly is the requirement and the development environment?

- Bhushan

Senior Engineer

SAP Active Global Support

Follow us on Twitter

Got Enhancement ideas? Try the SAP Idea Place

Getting started and moving ahead with Crystal Reports .NET applications.

Former Member
0 Kudos

loading crystal report without report viewer in asp .net.

former_member188030
Active Contributor
0 Kudos

You could load a crystal report using ReportDocument object, but you could not view it without the viewer. See if ExportToStream works for you viewing the report in browser in pdf cormat.

- bhushan

former_member183750
Active Contributor
0 Kudos

Use the following code:

Private Sub CrystalReportViewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CrystalReportViewer1.Load

        Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument

        crReportDocument.Load("C:\WindowsApplication5\test.rpt")

    End Sub

That will load the report. Now what?

You may want to consult the developer help files:

SAP Crystal Reports .NET SDK Developer Guide

SAP Crystal Reports .NET API Guide

and a sample or two:

Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki

- Ludek

Senior Support Engineer AGS Product Support, Global Support Center Canada

Follow us on Twitter

Answers (0)