Saving XLSX file with 2010 Format

I am evaluating the 10.3.0.43 version of XLSIo in order to create an excel in xlsx format. I am becoming cray. If i create my own xlsx file and use : 
Dim xltfilename As String = "c:\temp\FileExcel.xlsx"
        Dim sFileNameXls As String = "c:\temp\2010_out_Sample.xlsx"
        Dim excelEngine As New Syncfusion.XlsIO.ExcelEngine
        Dim oXlsApp As Syncfusion.XlsIO.IApplication = excelEngine.Excel
        'Dim oXlsWbk As Syncfusion.XlsIO.IWorkbook 'Excel.Workbook       'Cartella di lavoro Excel.
        Dim oXlsWbk As Syncfusion.XlsIO.IWorkbook = oXlsApp.Workbooks.Open(xltfilename)

        oXlsWbk.Version = Syncfusion.XlsIO.ExcelVersion.Excel2010
        oXlsWbk.SaveAs(sFileNameXls)
        'Close the workbook.
        oXlsWbk.Close()
        excelEngine.Dispose()
When i open the file with Exel 2010 i recive a "Unreadable content" message.

I also tryed to open a workbook of the example given with the evaluation copy. The same errors occurs.
The component works well if i try to save in 2003 format.
Any ideas ?


1 Reply

MK Manoj Kumar G M Syncfusion Team September 21, 2012 04:17 AM UTC

Hi Filippo Esposto,

Thank you for choosing Syncfusion products.

We regret for the inconvenience caused. Could you please send us a sample xlt document that is not working with XlsIO and we will provide a solution at the earliest.

Regards,

Manojkumar.


Loader.
Up arrow icon