Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
The Code Is:

C#
ReportDocument rptDoc = new ReportDocument();
DataSet6 ds = new DataSet6();
DataTable slip = new DataTable();

slip.TableName = "DataTable1";


slip = BOL.product.OnlineAccountantSlip(cid); 

ds.Tables[0].Merge(slip);

rptDoc.Load(Server.MapPath("CrystalReport7.rpt"));

rptDoc.SetDataSource(ds);
CrystalReportViewer1.ReportSource = rptDoc


Help me and thanks in advance
Posted
Updated 7-Mar-14 8:57am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900