How to convert a .xlsx file to a .xls file?
Posted: Thu Aug 13, 2015 3:56 am
Hi all,
Is it able to convert a .xlsx file to a .xls file using XLSReadWriteII? If the answer is yes, how can I do that? If not, any suggestions?
The fowlling code dose not work
Thanks in Advance,
Mophy.
Is it able to convert a .xlsx file to a .xls file using XLSReadWriteII? If the answer is yes, how can I do that? If not, any suggestions?
The fowlling code dose not work

Code: Select all
XLS.Filename := 'Source.xlsx';
XLS.Read;
XLS.Version := xvExccel97;
XLS.Filename := 'Dest.xls';
XLS.Write;
Mophy.