What is the comparable command for running a telerick report?
I have tried ReportName.run and it only has isinrunmode. I need to run the report before i convert it to docx so that some of my text boxes populate. Following is the code with rpt as a ActiveReport
I have tried ReportName.run and it only has isinrunmode. I need to run the report before i convert it to docx so that some of my text boxes populate. Following is the code with rpt as a ActiveReport
rpt.DataSource = new Select()
.From(EP_Main.ContractHeader.Schema)
.Where("ContractID")
.IsEqualTo(cheader.ContractID)
.ExecuteDataSet().Tables[0].Copy();
rpt.Run();
TelRpt.Run //This is the telerik report and only gives isinruntimemode