Search found 1 match
- Wed Jan 25, 2017 8:28 am
- Forum: XLSReadWriteII 3/4/5
- Topic: Converting from XLS to XLSX
- Replies: 1
- Views: 7492
Converting from XLS to XLSX
Is there any way to convert an xls file to xlsx. I tried the following code but it does not work: xls := TXLSReadWriteII4.Create(Self); xls.Filename := 'InputFile.xls'; xls.Read; xls.Version := xvExcel2007; xls.Filename := 'OutputFile.xlsx'; xls.Write; Excel displays the following error when I try t...