The application generates an Excel document from several files and produces the following error
System.Runtime.InteropServices.COMException HRESULT 0x800A03EC
<code> public void Off(Excel.Application application)
{
application.EnableEvents = true;
application.Calculation = Excel.XlCalculation.xlCalculationAutomatic; // Error HRESULT 0x800A03EC
application.DisplayAlerts = true;
application.DisplayStatusBar = true;
application.ScreenUpdating = true;
}
</code>
<code> public void Off(Excel.Application application)
{
application.EnableEvents = true;
application.Calculation = Excel.XlCalculation.xlCalculationAutomatic; // Error HRESULT 0x800A03EC
application.DisplayAlerts = true;
application.DisplayStatusBar = true;
application.ScreenUpdating = true;
}
</code>
public void Off(Excel.Application application)
{
application.EnableEvents = true;
application.Calculation = Excel.XlCalculation.xlCalculationAutomatic; // Error HRESULT 0x800A03EC
application.DisplayAlerts = true;
application.DisplayStatusBar = true;
application.ScreenUpdating = true;
}
I tried searching on the Internet, but it didn’t give any results.
New contributor
Kirill is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.