Posted 27 November 2019, 10:50 am EST
I have a program where i do excel exports to xls but want to upgrade them to xlsx.
Code is basically:
var wb = new WorkBook();
wb.Sheets.AddNew()
wb.Sheets[0].cell(0,x) = ...
Wich has worked fine for many years. Now I however added the line (just after creating the workbook)
wb.FileFormat = FileFormat.xlsx
I have many different reports and content does not seem to have any effect, even reports with just a single row of some strings never completes anymore.
And now the wb.Save() (to a memorystream) never finishes.
Before it took a few seconds to generate and now it never finishes.
The wierd part is it works perfectly on my dev machine but in production above happens. What could cause this to happen?
I am using AR10 if that matters