Search found 10 matches

by markl
Sat Mar 19, 2016 8:17 pm
Forum: XLSSpreadSheet
Topic: Group symbol above
Replies: 1
Views: 5900

Group symbol above

Hello!
Tell me please, how to make the group symbol (+/-) above than the opened group like in Excel (look left)?
XLSSpreadSheet 2.00.11 trial

Code: Select all

  XLS.Clear;
  XLS.Filename := '2.xlsx';
  XLS.XLS[0].WorkspaceOptions := [woShowAutoBreaks, woOutlineSymbols];
  XLS.Read;
Image
by markl
Fri Jan 23, 2015 2:50 pm
Forum: XLSReadWritwII 6
Topic: Digital signature
Replies: 2
Views: 1693

Re: Digital signature

Can you answer me?
by markl
Thu Jan 08, 2015 5:19 pm
Forum: XLSReadWritwII 6
Topic: Digital signature
Replies: 2
Views: 1693

Digital signature

Hello!

Please, let me know, can you implement digital signature addind feature in your library?
by markl
Tue Nov 04, 2014 5:00 pm
Forum: XLSReadWritwII 6
Topic: AutoHeightRow
Replies: 7
Views: 2960

Re: AutoHeightRow

Thank you!

Please, tell me when you plan to make next major release?
by markl
Thu Oct 30, 2014 6:52 am
Forum: XLSReadWritwII 6
Topic: AutoHeightRow
Replies: 7
Views: 2960

Re: AutoHeightRow

Can you implement this feature?
by markl
Tue Oct 28, 2014 10:41 am
Forum: XLSReadWritwII 6
Topic: AutoHeightRow
Replies: 7
Views: 2960

Re: AutoHeightRow

Can you answer me - why AutoRowHeight doesn't work with wrapped text?
by markl
Thu Oct 23, 2014 7:50 am
Forum: XLSReadWritwII 6
Topic: AutoHeightRow
Replies: 7
Views: 2960

Re: AutoHeightRow

Yes, my text has only one line of text.
OK, I can set in Excel "TextWrap" and increase RowHeight manualy, but it isn't what I need! There are too many such cells in output file (((
Why AutoRowHeight doesn't work with wrapped text?
by markl
Mon Oct 20, 2014 1:14 pm
Forum: XLSReadWritwII 6
Topic: AutoHeightRow
Replies: 7
Views: 2960

AutoHeightRow

Hello! Please, help me. How to set row height automaticaly depending on the cell content? This code does not work on XLSReadWriteII v5.20.36 ((( x[0].MergeCells(0,0, 5,0); x[0].Cell[0,0].FontStyle := [xfsBold]; x[0].Cell[0,0].FontSize := 12; x[0].Cell[0,0].HorizAlignment := chaCenter; x[0].AsString[...
by markl
Wed Apr 09, 2014 10:16 am
Forum: XLSReadWritwII 6
Topic: Footer problem
Replies: 2
Views: 1690

Re: Footer problem

Thank you, it works.
by markl
Wed Apr 09, 2014 7:49 am
Forum: XLSReadWritwII 6
Topic: Footer problem
Replies: 2
Views: 1690

Footer problem

Hello! I use XLSReadWriteII 5.20.22 Trial in DelphiXE2 and have some problems with footer. Footer is not saved after an execution of this example: XLS.Clear; XLS.Version := xvExcel97; for i := 1 to 256 do XLS[0].AsString[1,i] := 'Hello, world '+IntToStr(i); XLS[0].PrintSettings.HeaderFooter.OddFoote...