彩票走势图

XtraReports如何为报表绑定MDB数据库(示例代码)

原创|其它|编辑:郝浩|2012-09-21 17:07:34.000|阅读 539 次

概述:下面的示例演示了在运行的时候如何创建一个新的空白报表(XtraReport类的一个实例),创建数据对象,并绑定MDB文件(通过XtraReportBase.DataSource, XtraReportBase.DataAdapte和traReportBase.DataMember 属性),然后用包含XRLabel(显示数据来自该文件)的DetailBand填充报表。附代码。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

下面的示例演示了DevExpress报表控件XtraReports在运行的时候如何创建一个新的空白报表(XtraReport类的一个实例),创建数据对象,并绑定MDB文件(通过XtraReportBase.DataSource、XtraReportBase.DataAdapte和traReportBase.DataMember 属性),然后用包含XRLabel(显示数据来自该文件)的DetailBand填充报表。

C#

using System;
using System.Data;
using System.Data.OleDb;
using System.Windows.Forms;
using DevExpress.XtraReports.UI;
// ...

private void button1_Click(object sender, EventArgs e) {
// Create an empty report.
XtraReport report = new XtraReport();

// Create data objects.
OleDbDataAdapter adapter = new OleDbDataAdapter("SELECT * FROM Categories",
@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\..\nwind.mdb");
DataSet ds = new DataSet();
adapter.FillSchema(ds, SchemaType.Source);

// Bind the report to data.
report.DataSource = ds;
report.DataAdapter = adapter;
report.DataMember = "Table";

// Add a detail band to the report.
DetailBand detailBand = new DetailBand();
detailBand.Height = 50;
report.Bands.Add(detailBand);

// Add a label to the detail band.
XRLabel label = new XRLabel();
label.DataBindings.Add("Text", null, "CategoryName");
detailBand.Controls.Add(label);

// Show the report's print preview.
report.ShowPreview();
}

VB
Imports System
Imports System.Data
Imports System.Data.OleDb
Imports System.Windows.Forms
Imports DevExpress.XtraReports.UI
' ...

Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) _
Handles button1.Click
' Create an empty report.
Dim report As New XtraReport()

' Create data objects.
Dim adapter As New OleDbDataAdapter("SELECT * FROM Categories", _
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\..\nwind.mdb")
Dim ds As New DataSet()
adapter.FillSchema(ds, SchemaType.Source)

' Bind the report to data.
report.DataSource = ds
report.DataAdapter = adapter
report.DataMember = "Table"

' Add a detail band to the report.
Dim detailBand As New DetailBand()
detailBand.Height = 50
report.Bands.Add(detailBand)

' Add a label to the detail band.
Dim label As New XRLabel()
label.DataBindings.Add("Text", Nothing, "CategoryName")
detailBand.Controls.Add(label)

' Show the report's print preview.
report.ShowPreview()
End Sub


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
相关产品
XtraReports Suite

针对Windows Forms、ASP.NET、ASP.NET MVC、WPF,Silverlight和LightSwitch开发者的下一代跨平台报表方案

DevExpress Universal Subscription

行业领先的界面控件开发包,帮助企业构建卓越应用!

DevExpress WPF Subscription

高效MVVM开发模式,WPF界面解决方案首选工具,帮助企业实现酷炫动效界面。

DevExpress Silverlight Controls

高性价比高实用性的Silverlight用户界面控件套包,拥有大量的示例和帮助文档,开发者能够快速上手!

DevExpress WinForms Subscription

为Windows Forms平台创建具有影响力的业务解决方案,高性价比WinForms界面控件套包。

title
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP