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.