I,m Using Crystal Report in Windows Application and In this I Created a Data Set to fetch Data from the Database but I Don't Know How to Pass parameter in Data Set.... Any One can Tell me that How to Pass Parameter to Data Set for Using it in Crystal Report.

link|improve this question
feedback

1 Answer

The key is to fill in the data into the sub-reports.

foreach (ReportDocument subDoc in Report.Subreports)
{
     subDoc.SetDataSource(ReportDataSet);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.