CrystalReportViewer的Fire加载事件

时间:2013-11-12 15:20:59

标签: c# asp.net crystal-reports

我正在开发Windows应用程序。尝试在按钮单击时调用Crystal Report Viewer的加载事件但无法获得成功。我想点击按钮调用BillViewer_Load。请帮忙。 单击按钮的事件

private void BtnShowbill_Click(object sender, EventArgs e)
{

}

报告加载事件

private void BillViewer_Load(object sender, EventArgs e)
{

}

1 个答案:

答案 0 :(得分:0)

private void BtnShowbill_Click(object sender, EventArgs e)
{
    BillViewer_Load();
}