I am using Visual Studio 2008 and Telerik Reporting Q3 2008 SP2. We are using MySQL as the database backend.
I created a report and put it on a report viewer on a windows form. I put this in the code behind of the form
I created a report and put it on a report viewer on a windows form. I put this in the code behind of the form
private void reportViewer1_Load(object sender, EventArgs e)
{
LETGReportLibrary.
rptMasterAddress MyReport = new LETGReportLibrary.rptMasterAddress();
MyReport.AddressID = 8164;
reportViewer1.Report = MyReport;
reportViewer1.RefreshReport();
}
When I run the windows application, no data shows on the report. I know when I run the query, 14 rows come back. Why doesn't the data show in the windows application?