我是水晶报道的新手。如何使用以下方法处理报告。
report.Close();
report.Dispose();
我是否必须在Crystal报表查看器的Load或Unload事件中使用它? 任何人都可以提出处理报告的方法吗?
答案 0 :(得分:0)
我总是使用托管报表查看器的表单的FormClosed事件。
private void CrystalPreviewForm_FormClosed(object sender, FormClosedEventArgs e)
{
if (this.reportDocument != null)
{
this.reportDocument.Close();
this.reportDocument.Dispose();
}
}