Link to home
Start Free TrialLog in
Avatar of emi_sastra
emi_sastra

asked on

SAP Crystal Reports viewer 2008

Hi All,

I create report using CR XI (rpt file).

  Dim rptDocument = New CrystalDecisions.CrystalReports.Engine.ReportDocument()
        Dim strReportName As String = "xxx.rpt"

             
        Try

            rptDocument.Load( strReportName)

            Dim strJudul As String = ""

                                  rptDocument.SetDataSource(dtReport)

            Dim frmReportViewer As New frmReportViewer

            With frmReportViewer
                .CrystalReportViewer.ReportSource = rptDocument
                .WindowState = FormWindowState.Maximized
                .MdiParent = frmMain
                .Show()
            End With

        Catch ex As Exception

        End Try


What should installed at client computer  in order to view it?

Thank you.
ASKER CERTIFIED SOLUTION
Avatar of bhmahler
bhmahler
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of emi_sastra
emi_sastra

ASKER

Hi bhmahler,

Thank you very much for your help.