PowerTools ActiveReports for .NET 9.0J
DataSource プロパティ (SectionReport)
使用例 

レポートがデータを取得するデータソースを取得または設定します。
構文
'宣言
 
Public Property DataSource As Object
public object DataSource {get; set;}

プロパティ値

データソースとして機能するオブジェクト。

解説

設定できるデータソースには、任意のActiveReports組み込みデータソースおよび以下の任意のデータソースがあります。

レポート処理の開始後にデータソースプロパティを変更することはできません。

使用例
private void rptProducts_ReportStart(object sender, System.EventArgs eArgs)
{
    rptProducts rpt = new rptProducts();
    localhost.DataSetWS ws = new localhost.DataSetWS();
    DataSet ds = ws.GetProduct(); 
    this.DataSource = ds;
    this.DataMember = "Products";
}
Private Sub rptProducts_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Dim rpt As New rptProducts()
    Dim ws As New localhost.DataSetWS()
    Dim ds As New DataSet()
    ds = ws.GetProduct()
    Me.DataSource = ds
    Me.DataMember = "Products"
End Sub
参照

関連項目

SectionReport クラス
SectionReport メンバ
DataMember プロパティ

 

 


©2003-2015 GrapeCity inc. All rights reserved.