Crystal Reports Question: Download Crystal Reports PDF

How to create crystal reports in .net?

Tweet Share WhatsApp

Answer:

Select new item add Crystareport.rpt.report page will be
generated.In asp page u need to add crystal report viewer
control.
In aspx page follow the below code.....
ReportDocument rpt=new ReportDocument()
....
.....
..Fill the type dataset with ur required data.
.......
.....
rpt.Load(server.mappath("crystareport name"))
rpt.SetDataSource(objds);
CRV10.ReportSource = rpt;
.................
.............
after that switch to crystal report form and add dataset to
the report using databse expert......

Download Crystal Reports PDF Read All 22 Crystal Reports Questions
Previous QuestionNext Question
When looking at the join types in Crystal - what does it mean when you coose Enforce and Enforce To or Enforce From?Suppose I have a crystal report with a linked subreport as well. is there any way not to print the current record on the main report if no records are returned from the subreport?