Page 1 of 1

Bug in TXLSWorkbook.CopyCells

Posted: Mon Mar 06, 2017 9:20 am
by GenasysCarl
After some debugging, I found the following in XLSSheetData5.pas:

Code: Select all

Items[DestSheet].FCells.DeleteCell(C,R);
I think it should be:

Code: Select all

Items[DestSheet].FCells.DeleteCell(DestCol + (C - Col1), DestRow + (R - Row1));
Let me know if this is right. Thanks!

Re: Bug in TXLSWorkbook.CopyCells

Posted: Tue Mar 07, 2017 1:02 pm
by larsa
Hello

Yes, it looks correct. Will include the fix in the next update.

Re: Bug in TXLSWorkbook.CopyCells

Posted: Wed Mar 08, 2017 7:00 am
by GenasysCarl
Thanks Lars,

When is the next update scheduled?

Regards,
Carl