Search found 12 matches

by Svet-lana
Mon Jun 05, 2023 8:13 am
Forum: XLSReadWritwII 6
Topic: About PageBreaks
Replies: 2
Views: 633

Re: About PageBreaks

Thank you!
by Svet-lana
Tue May 30, 2023 1:35 pm
Forum: XLSReadWritwII 6
Topic: About PageBreaks
Replies: 2
Views: 633

About PageBreaks

Hello!

I need PageBreaks after (or before) some rows. For example,

xls.Sheets[0].AsString[0,RowG]:= 'End of page' ;
{PageBreak}
RowG:=RowG+1;
xls.Sheets[0].AsString[0,RowG]:= 'FirstRow for next Page';

How can I do it in XLSReadWriteII 5 ?
by Svet-lana
Fri Mar 11, 2022 7:51 am
Forum: AXWWriter and DOCXReadWrite
Topic: Splitting the table
Replies: 0
Views: 837

Splitting the table

Hi!
Can I split the table? For example, separate the first 2 lines from the rest of the content.
by Svet-lana
Tue Feb 08, 2022 6:41 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

HELP!!! I need to automatically generate a data file and then also automatically send it by email. The task itself presents no problems, but one difficulty arises - I need the Arial or Times New Roman font to be installed in the file. All my attempts to do this have failed. I tried to set the font f...
by Svet-lana
Thu Jan 20, 2022 1:28 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Good afternoon! A few questions about bookmarks. 1) the same situation as with styles - I specify the Arial font for the bookmark, but no changes occur. Font size, underline and italics work fine. 2) Is there any way to change the alignment for the bookmark? After assigning the value, the bookmarks ...
by Svet-lana
Thu Jan 13, 2022 7:37 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Hello again! I have a problem when working with styles. I noticed this when I tried to run your example. I press the 'Use styles' button, then save everything to a file. When I open the file, I see that the font size has changed, the color too. But the font name is not. Can something be changed here...
by Svet-lana
Tue Dec 21, 2021 11:44 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Thanks for the reply. So, we will adapt to what we have. in

Tell me, is it possible to upload files with the .dot extension as a template?
by Svet-lana
Thu Dec 16, 2021 2:38 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Hello again! A have a question about Merge Cells in a table. In the sample I saw this DOCX.Editor.Selections.TableSelect(DOCX.Editor.Paras.Tables[0],1,1,3,2); So you merge Cols from 1 to 3 and Row from 1 to 2. Let's look a preview. You have in these cells R2C2 R2C3 R2C4 R3C2 R3C3 R3C4 And after merg...
by Svet-lana
Tue Dec 14, 2021 7:37 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

And can I insert page preak after some rows of a table? For example, I have a table with 40 rows and I want to print 25 rows in the first page, insert break and print other rows in the second page. I fill out the table like this Query.First; while not qMain.Eof do begin Cell := ATable.Rows[C].Cells[...
by Svet-lana
Thu Dec 09, 2021 6:35 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Thank you for your answer!

I understand how I can copy some table rows, but I don't know how can I know that the page number was changed and I should past the table header.
Can I know the page number before pasting the next row?
by Svet-lana
Wed Dec 08, 2021 8:51 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Re: Some questions about DocxReadWrite

Thanks for answer!

3. I need repeat a current TABLE header (the first row of the table or a few rows), not the header of the page.
by Svet-lana
Tue Dec 07, 2021 11:13 am
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2770

Some questions about DocxReadWrite

Hello! I am studying the possibilities of DocxReadWrite to understand how the program will solve all my problems. And I have sone questions about it. 1) Can I align the header to the right or to the center? 2) Can I insert page break when I need it? 3) Can I repeat the table header on every page? Or...