Мои данные отчета меняются в зависимости от критериев, которые выбирает пользователь?
private void ToPDFfile()
{
ReportDocument cryRpt = new ReportDocument();
cryRpt.Load("Here i want to set crystal report path"); // here I want to select my crystal report path
crystalReportViewer1.ReportSource = cryRpt;
crystalReportViewer1.Refresh();
cryRpt.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat,
@"D:\ASD.pdf"); // this is where i want to save my pdf
MessageBox.Show("Exported Successful");
}
Это мой код, он работает, когда я задаю путь для отчета с фиксированными данными, но я хочу преобразовать данные из Crystal Reports.