I dont have crystal report in my vs 2005 that is standart edition
how cant is use my old crystal 8.5 with vs2005
Printable View
I dont have crystal report in my vs 2005 that is standart edition
how cant is use my old crystal 8.5 with vs2005
You can create your reports in CR 8.5 and then when done save the rpt file(s). Then add a reference to CR 8.5 in your VS and drop a CR ReportViewer control on a form etc.
I am trying to give report to reportviewer like this
Me.rv1.LocalReport.ReportPath = ("D:\Pathology\Report1.rpt")
but it show some error and report dosnt start
what is the exact syntex
Try...
Me.rv1.LocalReport.ReportPath = "D:\Pathology\Report1.rpt"
What the error message?
Me.rv1.LocalReport.ReportPath = "D:\Pathology\Report1.rpt"
i have the above but no error no message just opening a blank viewer
Did you populate your report? Set its source etc?
i have tried to set the source but i didnt get
please tell me how to set the source and how to populate the report
how to pass the recordselection formula
and hot pass the text to formulas
Dim mycrpt As New Crystal.CrystalReport
Dim rpt As New CrystalReport
mycrpt.ReportFileName = "D:\Pathology\Report1.rpt"
how to handover this report to microsoft report viewer
Dim mycrpt As New Crystal.CrystalReport
mycrpt.ReportFileName = "D:\Pathology\Report1.rpt"
how to handover this report to microsoft report viewer in vb.net 2005
i have tried this
Me.rv1.LocalReport.ReportPath = "D:\Pathology\Report1.rpt"
As I posted, use the Crystal Report Viewer control.
i dont have crystal viewer in my toolbox from where shuld i add it