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.
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.