Search found 23 matches
- Wed May 09, 2018 12:01 pm
- Forum: XLSReadWritwII 6
- Topic: BPL files and Delphi Version
- Replies: 1
- Views: 2189
Re: BPL files and Delphi Version
Can you send me the two project definitions for Delphi 10 and Delphi 10.2? I would add the LIBSUFFIX myself..
- Wed May 09, 2018 7:25 am
- Forum: XLSReadWritwII 6
- Topic: BPL files and Delphi Version
- Replies: 1
- Views: 2189
BPL files and Delphi Version
Hi, We purchased the components with source (which is fine), but the name of the bpl files do not follow the standard naming procedures. there is a vcl230.bpl for Delphi 10 Seattle and a vcl250.bpl vor Delphi 10.2.3 Tokyo if I compile my project with runtime packages enabled, I have to add only vcl ...
- Wed Feb 28, 2018 3:41 pm
- Forum: XLSReadWritwII 6
- Topic: Another issue when deleting rows: merged cells remain
- Replies: 6
- Views: 4630
Re: Another issue when deleting rows: merged cells remain
Thank you for your bugfix. With the latest version 6.00.30, I can report that deleting rows works and nice XLS documents are created! 

- Thu Feb 15, 2018 9:30 am
- Forum: XLSReadWritwII 6
- Topic: XLSX files and modified palettes
- Replies: 2
- Views: 2372
Re: XLSX files and modified palettes
Thank you! I can confirm that it is working now.
- Wed Feb 07, 2018 3:05 pm
- Forum: XLSReadWritwII 6
- Topic: Another issue when deleting rows: merged cells remain
- Replies: 6
- Views: 4630
Re: Another issue when deleting rows: merged cells remain
I'm sorry, but I discovered another problem with merged cells and deleted rows. Following example: https://i.imgur.com/JMjcY1h.png On the left side, you see the original file. Here, I delete rows from index 21 to index 28 (marked yellow). The result is in the middle: merged cells remain at row index...
- Wed Jan 31, 2018 3:23 pm
- Forum: XLSReadWritwII 6
- Topic: XLSX files and modified palettes
- Replies: 2
- Views: 2372
XLSX files and modified palettes
For backwards compatibility we still use indexed palettes. Unfortunately when saving the XLSX files with modified palettes, the palette gets not saved and the XLS file will have different colors than specified. I found the following workaround to generate the palette before saving the file. Is there...
- Wed Jan 31, 2018 3:10 pm
- Forum: XLSReadWritwII 6
- Topic: Another issue when deleting rows: merged cells remain
- Replies: 6
- Views: 4630
Re: Another issue when deleting rows: merged cells remain
I installed the updated components and can confirm that it is working now.
- Mon Jan 29, 2018 11:33 am
- Forum: XLSReadWritwII 6
- Topic: Problem with BackgroundColor and FillPattern
- Replies: 1
- Views: 2153
Re: Problem with BackgroundColor and FillPattern
Just solved this problem: there is a different property to set the pattern color: try LDoc := TXLSReadWriteII5.Create(nil); LDoc.Sheets[0].AsString[3,3] := ''; LFormat := LDoc.CmdFormat; LFormat.BeginEdit(LDoc[0]); LFormat.Fill.PatternStyle := efpLightGrid; LFormat.Fill.PatternColor.IndexColor := xc...
- Wed Jan 24, 2018 2:52 pm
- Forum: XLSReadWritwII 6
- Topic: Illegal ptgs
- Replies: 7
- Views: 5088
Re: Illegal ptgs

- Wed Jan 24, 2018 1:08 pm
- Forum: XLSReadWritwII 6
- Topic: Invalid sheet type in file
- Replies: 1
- Views: 1756
Invalid sheet type in file
After I load an older excel file (xls) with VBA modules included, the xls reader is generating an exception. The problem is that substreams with type 6 are not handled in a case statement. https://i.imgur.com/IpOst2P.png This is disturbing. Proposal: just skip over that modules (or add an option to ...
- Wed Jan 24, 2018 8:59 am
- Forum: XLSReadWritwII 6
- Topic: Another issue when deleting rows: merged cells remain
- Replies: 6
- Views: 4630
Re: Another issue when deleting rows: merged cells remain
While I can confirm that it works for:
It does not work for:
- thw row and formatting is deleted but the merged cell is moved to row 4.

The merged cell remains, even if I delete row 5.
Code: Select all
DeleteRows(0, 0, 4);
Code: Select all
DeleteRows(0, 4, 4);

The merged cell remains, even if I delete row 5.
- Thu Jan 18, 2018 11:03 am
- Forum: XLSReadWritwII 6
- Topic: Another issue when deleting rows: merged cells remain
- Replies: 6
- Views: 4630
Another issue when deleting rows: merged cells remain
Unfortunetaly I found another issue while deleting rows in an excel sheet. If I use merged cells and delete a range of rows (including the merged cells), they will not get deleted and remain in the document. The result is unsatisfactory because the remaing rows are affected. Example screenshot: http...
- Wed Jan 17, 2018 9:09 am
- Forum: XLSReadWritwII 6
- Topic: Illegal ptgs
- Replies: 7
- Views: 5088
Re: Illegal ptgs
I've isolated the problem and I think I can describe it: the problem is caused by deleting specific rows. After that, the corresponding ranges are not updated correctly in TXLSFormulaHandler.AdjustCellRowsChanged. Example: define a named range: Tabelle1!$C$5:$C$10 call DeleteRows(0, 4, 6); the named...
- Mon Dec 11, 2017 7:29 am
- Forum: XLSReadWritwII 6
- Topic: Diagonal borders in XLSX
- Replies: 7
- Views: 5068
Re: Diagonal borders in XLSX
I can confirm that it is working now for both filetypes, xls and xlsx. Thank you!
- Wed Nov 29, 2017 9:33 am
- Forum: XLSReadWritwII 6
- Topic: Diagonal borders in XLSX
- Replies: 7
- Views: 5068
Re: Diagonal borders in XLSX
Thank your for the bug fix. I downloaded the latest version and now the diagonal border is showing up in the xlsx file. It does not work if I use the old file format, though. uses XlsReadWriteII5, XLSCmdFormat5, Xc12DataStyleSheet5, Xc12Utils5, SysUtils; procedure testd(); var LDoc: TXLSReadWriteII5...