When we run the sample FormatCells and click on the "Format colummns" button, the application hangs consuming all CPU.
The bug is on the line: XLS.CmdFormat.ApplyRows(1,5);
We're using version 5.20.45 and Delphi XE2
Search found 2 matches
- Tue Mar 24, 2015 7:26 pm
- Forum: XLSReadWritwII 6
- Topic: Application hanging on CmdFormat.ApplyCols
- Replies: 1
- Views: 2330
- Wed Jan 21, 2015 5:19 pm
- Forum: XLSReadWritwII 6
- Topic: Error writing empty string on D7
- Replies: 0
- Views: 2224
Error writing empty string on D7
When I write cells with empty strings, when I read then back they have the content #$D (carriage return). I've created a small sample code to reproduce the problem, I'm using Delphi 7 and XLSRW version 5.20.41 xlsRW.Clear; xlsRW.Version := xvExcel2007; xlsRW[0].AsString[1, 0] := ''; xlsRW.Filename :...