Hi
I have this code that open my crystal report. I would like to send it dircet to pdf file not open with crystal report because when I open it in crystal report I get broken link for print, export, ... I tried CRRedist2005_x86.msi and it didn't work. is there any way to do that?
Thanks
Dim crReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
crReport.Load(Server.MapPath("AppListing.rpt"))
crReport.SetDatabaseLogon("admin", "%%%")
crReport.SetParameterValue(0, Request.QueryString("sDept").ToString)
crReport.SetParameterValue(1, Request.QueryString("sDiv").ToString)
crReport.SetParameterValue(2, Request.QueryString("sSec").ToString)
crReport.SetParameterValue(3, Request.QueryString("sStat").ToString)
crViewer.ReportSource = crReport
I have this code that open my crystal report. I would like to send it dircet to pdf file not open with crystal report because when I open it in crystal report I get broken link for print, export, ... I tried CRRedist2005_x86.msi and it didn't work. is there any way to do that?
Thanks
Dim crReport As New CrystalDecisions.CrystalReports.Engine.ReportDocument
crReport.Load(Server.MapPath("AppListing.rpt"))
crReport.SetDatabaseLogon("admin", "%%%")
crReport.SetParameterValue(0, Request.QueryString("sDept").ToString)
crReport.SetParameterValue(1, Request.QueryString("sDiv").ToString)
crReport.SetParameterValue(2, Request.QueryString("sSec").ToString)
crReport.SetParameterValue(3, Request.QueryString("sStat").ToString)
crViewer.ReportSource = crReport