AxAcroPDF causes huge form close delay with the latest adobe update (15.023.20053)
We use the AxInterop.AcroPDFLib.dll in our .net c# application for displaying pdfs on a windows forms application.
I've created a demo in order to reproduce this behaviour:
public AxAcroPDFLib.AxAcroPDF m_AxPdf;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
m_AxPdf = new AxAcroPDFLib.AxAcroPDF();
((System.ComponentModel.ISupportInitialize)m_AxPdf).BeginInit();
m_AxPdf.Dock = DockStyle.Fill;
panel1.Controls.Add(m_AxPdf);
m_AxPdf.Visible = true;
m_AxPdf.LoadFile(@"C:\temp\test.pdf");
m_AxPdf.setShowToolbar(true);
}
With the update (15.023.20053) from yesterday, the closing of the form takes up to 20 seconds. Before this adobe patch, it took no time at all.
Is this a known bug, or is there a workaround?
