Hi there,
I'm trying to print my schedule. Just like what this does:
http://demos.telerik.com/schedulebuilder/
But I couldn't print anything. I don't quite understand how to make telerik scheduler and telerik reporting work together.
In my EventReport.aspx.cs file, I can't use the code which works perfectly for
http://demos.telerik.com/schedulebuilder/
using EventScheduler.Reporting;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
EventsReport eventsReport = new EventsReport();
ReportViewer1.Report = eventsReport;
}
}
Each time I use the code above, I will get this error:
Actually I'm not using Telerik.Reporting, Version=3.2.9.1006 at all.
And I added another project in my existing project , in which i created report using Telerik Reporting. I'm not sure how my report can be used to work together with scheduler.
Any help will be appreciated.
I'm trying to print my schedule. Just like what this does:
http://demos.telerik.com/schedulebuilder/
But I couldn't print anything. I don't quite understand how to make telerik scheduler and telerik reporting work together.
In my EventReport.aspx.cs file, I can't use the code which works perfectly for
http://demos.telerik.com/schedulebuilder/
using EventScheduler.Reporting;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
EventsReport eventsReport = new EventsReport();
ReportViewer1.Report = eventsReport;
}
}
Each time I use the code above, I will get this error:
Could not load file or assembly 'Telerik.Reporting, Version=3.2.9.1006, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Actually I'm not using Telerik.Reporting, Version=3.2.9.1006 at all.
And I added another project in my existing project , in which i created report using Telerik Reporting. I'm not sure how my report can be used to work together with scheduler.
Any help will be appreciated.