I previously developed some reports with the Q2 trial release, then just purchased the full version of Q3, and I'm having lots of problems with the reports even after successfully running the upgrade wizard.
To simply/isolate the problem, I've performed the following steps with no luck:
1. create new Windows Forms application called BusinessObjectDataSourceReporting.
2. create a new class called Person:
3. Build project
4. Drop a telerik "ReportViewer" onto Form1.
5. Add new item to project, select template "Telerik Report 2009 Q3", name it PersonReport. When wizard pops up follow the basic options...
1. Click next
2. New Report, click next
3. Create new datasource
4. Select "Business Object"
5. select BusinessObjectDataSourceReporting.BusinessObjectDataSourceReporting.Person
6. Next, next, etc., finish...
The report is produced with NO fields in the details section. The Data Explorer window shows "No Data Source".
I also tried creating the datasource first in visual studio, then selecting it as an "existing data source" in the report wizard, with the same results.
Oddly, the report's "DataSource" property appears properly set to BusinessObjectDataSourceReporting.Person.
It seems like this is a pretty basic task, am I missing something obvious? Thanks!
Michael
To simply/isolate the problem, I've performed the following steps with no luck:
1. create new Windows Forms application called BusinessObjectDataSourceReporting.
2. create a new class called Person:
using System; |
namespace BusinessObjectDataSourceReporting { |
public class Person { |
public string LastName { get; set; } |
public DateTime DateOfBirth { get; set; } |
} |
} |
4. Drop a telerik "ReportViewer" onto Form1.
5. Add new item to project, select template "Telerik Report 2009 Q3", name it PersonReport. When wizard pops up follow the basic options...
1. Click next
2. New Report, click next
3. Create new datasource
4. Select "Business Object"
5. select BusinessObjectDataSourceReporting.BusinessObjectDataSourceReporting.Person
6. Next, next, etc., finish...
The report is produced with NO fields in the details section. The Data Explorer window shows "No Data Source".
I also tried creating the datasource first in visual studio, then selecting it as an "existing data source" in the report wizard, with the same results.
Oddly, the report's "DataSource" property appears properly set to BusinessObjectDataSourceReporting.Person.
It seems like this is a pretty basic task, am I missing something obvious? Thanks!
Michael