我使用从 Adobe Reader 9 安装中获取的 axAcroPDFLib 控件在我的 C# 窗口表单应用程序中显示和打印用户 PDF 文档。一切正常,直到应用程序关闭...
它抛出以下错误:
“0x0700609c”处的指令引用了“0x00000014”处的内存。无法读取内存
我的 FormClosing 方法很简单,我认为是错误的,但我不知道如何以正确的方式做到这一点:
private void Form2_FormClosing(object sender, FormClosingEventArgs e)
{
if (axAcroPDF1 != null)
{
axAcroPDF1.Dispose();
}
}
提前感谢您的任何想法