查看参数化报表

参数化报表中的参数提示对话框的显示取决于您如何查看报表。

获取参数对话框

1、在 Visual Studio 中,将报表查看器控件添加到该窗体上。

2、双击窗体标题创建 Form_Load 事件。

3、将下面的代码添加到处理程序中。

粘贴以下的 Visual Basic.NET 代码到Form_Load中。

Dim rpt As New SectionReport1

Viewer1.Document = rpt.Document

rpt.Run()

粘贴以下的 C# 代码到Form_Load 中。

SectionReport1 rpt = new SectionReport1();

viewer1.Document = rpt.Document;

rpt.Run();

在查看器侧边栏中获取参数面板

1、在 Visual Studio 中,将报表查看器控件添加到该窗体上。

2、双击窗体标题创建 Form_Load 事件。

3、将下面的代码添加到处理程序中。

粘贴以下的 Visual Basic.NET 代码到Form_Load 中。

Dim rpt As New SectionReport1

Me.Viewer1.LoadDocument(rpt)

粘贴以下的 C# 代码到Form_Load 中。

SectionReport1 rpt = new SectionReport1();

viewer1.LoadDocument(rpt);