First Report
Hello-
Designed report and can preview it in design mode... but I move it to production and bind a dataset, the loading icon just spins.
Can someone please help.
Thanks,
-Thomas
Designed report and can preview it in design mode... but I move it to production and bind a dataset, the loading icon just spins.
Can someone please help.
Thanks,
-Thomas
Comments
I am past the spinning icon... Thanks.
Now I am receiving an Error... Table is not connected to the data. Register the data using Report.RegisterData method.
Here is the method I am using on Page_Load...
private void BindData()
{
Report FReport = WebReport1.Report;
RegisterData(FReport);
}
private void RegisterData(Report FReport)
{
DataSet dsMain = LoadSearchResults();
FReport.RegisterData(dsMain, "Employee");
FReport.Prepare();
}
Thanks again for your help.
-Thomas
Now receiving this error...
ERROR:
Text5: Error in expression: FormatDateTime(ToDateTime([Table1.RouteDate]), "Short Date")
The function is in the editor...
[FormatDateTime(ToDateTime([Table1.RouteDate]), "Short Date")]