我正在开发Windows应用程序。尝试在按钮单击时调用Crystal Report Viewer的加载事件但无法获得成功。我想点击按钮调用BillViewer_Load。请帮忙。 单击按钮的事件
private void BtnShowbill_Click(object sender, EventArgs e)
{
}
报告加载事件
private void BillViewer_Load(object sender, EventArgs e)
{
}
答案 0 :(得分:0)
private void BtnShowbill_Click(object sender, EventArgs e)
{
BillViewer_Load();
}