PowerTools ActiveReports for .NET 11.0J
Run() メソッド
使用例 

ブロックモードでレポート処理を開始します。
構文
'宣言
 
Public Overloads Sub Run() 
public void Run()
解説

このメソッドは、レポートが処理を完了するまで、ビューワコントロールのリンクされたドキュメントを同期させません。

使用例
private void Form1_Load(object sender, System.EventArgs e)
{
    SectionReport1 rpt = new SectionReport1();
    rpt.Run();
    viewer1.Document = rpt.Document;
}
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load    
    Dim rpt As New rptMain()
    rpt.Run()
    Viewer1.Document = rpt.Document
End Sub
参照

関連項目

SectionReport クラス
SectionReport メンバ
オーバーロード一覧
Document プロパティ

 

 


©2003-2017 GrapeCity inc. All rights reserved.