I am currently testing XLSReadWrite V6 to update our products to this version.
First of all, thank you for the new version
Most things run smoothly but some of our unit tests fail.
First thing I noticed was that TXLSWorksheet.IsEmpty has been changed.
Code: Select all
function TXLSWorksheet.IsEmpty: boolean;
begin
CalcDimensions;
Result := (FirstCol = LastCol) and (FirstRow = LastRow);
end;
In V5 there was another mechanism to detect if the sheet was empty which returns the correct value.
Could you please fix this.
Thank you
d3nton