Hi Wang,
Thank you for using
Syncfusion products.
The
reported issue has been fixed in our 12.2 and later versions. But your working
version is mentioned as 11.4. To avail this functionality along with other
enhancements, we strongly recommend you to upgrade to the latest version.
Please let us know if
you need any clarification.
Regards,
Ishwarya N
Hi Ilgiz,
The improper conversion of IntPtr to Int32 inside the library causes the overflow exception in your application.
Thanks,
Mathu Mohan V A
Hi Ilgiz,
Disabling the UseNativeStorage property resolves this issue. This property indicates whether we should use native storage (standard windows COM object) or .NET implementation to open Excel 97-2003 files.
Following code example illustrates this.
// New instance of XlsIO is created[Equivalent to launching MS Excel with no workbooks open]. // Instantiate the spreadsheet creation engine. ExcelEngine excelEngine = new ExcelEngine(); // Instantiate the Excel application object. IApplication application = excelEngine.Excel; // Disabling UseNativeStorage property. Application.UseNativeStorage = false ; |
Thanks,
Mathu Mohan V A