Crystal Reports Question:
Download Questions PDF

How to create crystal reports in .net?

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 Interview Questions And Answers PDF

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?