Hello,
when trying to save a workbook to MHT format, I get an OutOfMemoryException.
I have created code reproducing the problem and have attached a workbook causing the exception to occur.
thanks,
Henrik
namespace AsposeCellsTestOutOfMemory
{
using System;
using System.Diagnostics;
using Aspose.Cells;
class Program
{
static void Main(string[] args)
{
try
{
var l_workBook = new Workbook(“d:\temp\workbook.xls”);
l_workBook.Save(“d:\temp\workbook.mht”);
}
catch (Exception e)
{
Trace.WriteLine("Exception when converting the workbook to mht format: " + e);
throw;
}
}
}
}
Hi,
Hello,
and thanks for your quick response. Tested the case in my environment and the new version worked fine.
thanks, Henrik
Hi,