Hi,
We have a console application that handles some fairly large files that we open using code like this:
using (Spire.Xls.Workbook workbook = new Spire.Xls.Workbook())
{
workbook.LoadFromFile(FilePath);
}
This has been working just fine. However, we just got a .xlsx file that is about 288 MB in size, which is big, but not crazy big, and when we run LoadFromFile, it throws an exception: "Stream was too long". We have the licensed version of Spire.XLS version 9.5.2.6040.
Is there something we can do to fix this?
Thanks.