Error exchanging XLS.Version to xvExcel97
Posted: Mon Feb 10, 2014 4:58 pm
In version 5 when I try to change the version for Excel97 the following error occurs:
XLSSpreadSheet V2.00.05
XLSReadWriteII V5.20.14a
PS: I repeated the tests after upgrading to version 5.20.15a and the problem continues.
followed by error:List index out of bounds (0)
The code used for the test is as follows:Access violation at 0x02550286: read of address 0x00000014
Code: Select all
XLS := TXLSReadWriteII5.Create(nil); // Creates with Default Version = xvExcel2007
try
XLS.Version := xvExcel97; // Error: List index out of bounds (0)
...
...
finally
FreeAndNil(XLS);
end;
XLSReadWriteII V5.20.14a
PS: I repeated the tests after upgrading to version 5.20.15a and the problem continues.