Telerik Forums
Reporting Forum
2 answers
214 views
Hi :o)

I've just installed the latest version of reporting which appears to be working correctly now - thank you for your previous help :o)

The problem I have now is that when I preview the report I have created with the report wizard it is empty - saying "the source of the report definition has not been specified".

I have compared it to the sample reports and the only thing that I can see that is obvious is that your reports have datasettableadapters also where as the one that the wizard created hasn't.

It must be connecting ok though as it pulled back the fields ok!!!

Thank you so much for your time


TimTom :o)
timtom
Top achievements
Rank 1
 answered on 04 Jun 2008
1 answer
177 views
With the new Reporting for 2008,  it seems that the original steps don't work.
Create a ClassLibrary,  Create a DataSet or TableAdapter and point the
report's DataSource to the DataSet or Data Adapter,  and then Point the
ReportViewer's Report to the report.

MyReport r1 = new MyReport(); // from the class library
dt = ta._Get(...)
ds.Tables.Add(dt);
r1.DataSource = ds;
ReportViewer1.Report = r1;

This used to work.   NOW with the new Reporting 2008  this doesn't work anymore.

What should I do?

Thanks,
David

Steve
Telerik team
 answered on 04 Jun 2008
3 answers
192 views
After installing Telerik Reporting Q1 2008 SP1, all of the items except Telerik Report have disappeared from the New Item dialog in Visual Studio. I am using Windows XP Pro SP3. The information from my Visual Studio About dialog is below.

Microsoft Visual Studio 2005
Version 8.0.50727.762  (SP.050727-7600)
Microsoft .NET Framework
Version 2.0.50727 SP1

Installed Edition: Enterprise

Microsoft Visual Basic 2005   77642-113-3000004-41876
Microsoft Visual Basic 2005

Microsoft Visual C# 2005   77642-113-3000004-41876
Microsoft Visual C# 2005

Microsoft Visual C++ 2005   77642-113-3000004-41876
Microsoft Visual C++ 2005

Microsoft Visual J# 2005   77642-113-3000004-41876
Microsoft Visual J# 2005

Microsoft Visual Studio Tools for Office   77642-113-3000004-41876
Microsoft Visual Studio Tools for the Microsoft Office System

Microsoft Visual Web Developer 2005   77642-113-3000004-41876
Microsoft Visual Web Developer 2005

Microsoft Web Application Projects 2005   77642-113-3000004-41876
Microsoft Web Application Projects 2005
Version 8.0.50727.762

Microsoft Web Deployment Projects 2005   77642-113-3000004-41876
Microsoft Web Deployment Projects 2005

Visual Studio 2005 Team Edition for Developers   77642-113-3000004-41876
Microsoft Visual Studio 2005 Team Edition for Software Developers

ActiveReports for .NET   3.0
The first report writer for Microsoft .NET

CodeSmith 4.0   4.0
CodeSmith Tools Visual Studio Add-in Package

Crystal Reports XI Release 2    B6W60-01CS200-00059P0-02M0
Crystal Reports XI Release 2

Enterprise Library Configuration Editor   3.0
Microsoft patterns & practices Enterprise Library Configuration Editor

Microsoft Visual Studio 2005 Team Edition for Software Developers - ENU Service Pack 1 (KB926601)  
This service pack is for Microsoft Visual Studio 2005 Team Edition for Software Developers - ENU.
If you later install a more recent service pack, this service pack will be uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/926601

Oracle Developer Tools for Visual Studio   11.1.0.6.20
Oracle Developer Tools for Visual Studio Copyright (c) 2005, 2007

Orcas Technology Preview - .NET Framework 3.0 Development Tools   1.0
Microsoft Visual Studio Code Name Orcas Community Technology Preview - Development Tools for WinFX

Security Update for Microsoft Visual Studio 2005 Team Edition for Software Developers - ENU (KB937061)  
This Security Update is for Microsoft Visual Studio 2005 Team Edition for Software Developers - ENU.
If you later install a more recent service pack, this Security Update will be uninstalled automatically.
For more information, visit http://support.microsoft.com/kb/937061

SQL Server Analysis Services  
Microsoft SQL Server Analysis Services Designer
Version 9.00.3042.00

SQL Server Integration Services  
Microsoft SQL Server Integration Services Designer
Version 9.00.3042.00

SQL Server Reporting Services  
Microsoft SQL Server Reporting Services Designers
Version 9.00.3042.00

Telerik Reporting   2.5
For more information please visit http://www.telerik.com/reporting

VMDebugger
For more information about VMware, see their website at
http://www.vmware.com
Copyright (c) 2006-2007 VMware, Inc.

Steve
Telerik team
 answered on 03 Jun 2008
1 answer
483 views
Hi,

I'd like to load the object data source based on a parameter rather than a hardcoded datasource as in your example or be able to run the report off a dynamically created set of objects that is pased into the report.

Your example code for a master detail report using objects looks like this:

public

RptOrders()

{

/// <summary>

/// Required for telerik Reporting designer support

/// </summary>

InitializeComponent();

//

// TODO: Add any constructor code after InitializeComponent call

//

this.DataSource = Middle.Order.CreateOrderList();

}

private void subReport1_NeedDataSource(object sender, System.EventArgs e)

{

Telerik.Reporting.Processing.

SubReport subReport = (Telerik.Reporting.Processing.SubReport)sender;

subReport.InnerReport.DataSource = ((System.Data.

DataRowView)subReport.DataItem)["OrderLines"];

}


How can I asign a dynamically created set of objects to the datasource?  Could I pass a list of objects into another constructor for the report? as in:

public RptOrders(List<RptOrder> rptOrders)

{

/// <summary>

/// Required for telerik Reporting designer support

/// </summary>

InitializeComponent();

//

// TODO: Add any constructor code after InitializeComponent call

//

this.DataSource = rptOrders;

}

 
I'm using q1 2008 reporting in a web project.

Milen | Product Manager @DX
Telerik team
 answered on 03 Jun 2008
3 answers
56 views
Hi :o)

I have just installed reporting Q1 2008 which appears to be working ok in the demo solution.

The problem is that when I try to add a report to my own project (both new and existing) there is no telerik report in the add items dialog box.

Thank you so much


Tim :o)
Steve
Telerik team
 answered on 03 Jun 2008
0 answers
92 views
How do you prevent a SubTotal Group from Appearing.

I'm counting Count(Months)   ,  when Count is < 1   I don't want to show the
GroupFooter Section.

Thanks,

David
David
Top achievements
Rank 1
 asked on 03 Jun 2008
3 answers
61 views
Upgraded to latest Telerik Reporting -  It the old designer, no fancy tabs, or Rulers, etc.

Also,  Can't seem to do a total in the footer.

Any ideas?

Thanks,
David
David
Top achievements
Rank 1
 answered on 03 Jun 2008
5 answers
144 views
Hi, I'm creating some reports with Pie charts.
I need to know, how I change the Chart title. The property name for class Chart doesn't change the char title, and ChartTitle is read only.
The other question is how I show the name of the series and the percent.

Best Regards,
Sebastián Reale
Steve
Telerik team
 answered on 02 Jun 2008
1 answer
66 views
Hi, have anyone of you have come across this? rather a bit strange.
When i open the reportviewer at IE7 in vista, as the page is in RADwindow as frame, it simply not showing "Internet explorer cannot open... etc"
Steve
Telerik team
 answered on 02 Jun 2008
1 answer
68 views
Hi All,

I want to know,how to export the telerik reports programmitically to pdf format in winforms.
Rossen Hristov
Telerik team
 answered on 02 Jun 2008
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?