Search found 1570 matches

by larsa
Thu Feb 17, 2022 2:48 pm
Forum: AXWWriter and DOCXReadWrite
Topic: How can I adjust document preview?
Replies: 1
Views: 596

Re: How can I adjust document preview?

Hello

Sorry, that is not implemented.
by larsa
Thu Feb 17, 2022 2:44 pm
Forum: XLSReadWritwII 6
Topic: Support for old formats.
Replies: 1
Views: 573

Re: Support for old formats.

Hello I have sent you two answers by email on this, but it seems they didn't reach you. No. Support for writing Excel 4/5 files was dropped because nobody uses these formats in new code. The only time you see Excel 4/5 files is when they are exported by very old applications. Reading these files is ...
by larsa
Thu Feb 17, 2022 2:42 pm
Forum: XLSReadWritwII 6
Topic: Reading XLS created with Google Sheets
Replies: 3
Views: 848

Re: Reading XLS created with Google Sheets

Hello

Use this before reading First/Last:

Code: Select all

XLS[Sheet].CalcDimensions;
by larsa
Wed Feb 16, 2022 4:07 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Cannot Compile (Delphi XE)
Replies: 4
Views: 815

Re: Cannot Compile (Delphi XE)

Hello

I have posted a new update now. Please download it.
by larsa
Wed Feb 16, 2022 4:06 pm
Forum: XLSReadWritwII 6
Topic: Reading XLS created with Google Sheets
Replies: 3
Views: 848

Re: Reading XLS created with Google Sheets

Hello

Try:

Code: Select all

XLS.UseAlternateZip := True;
by larsa
Mon Feb 14, 2022 5:24 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Cannot Compile (Delphi XE)
Replies: 4
Views: 815

Re: Cannot Compile (Delphi XE)

Hello

I don't recognize that code line. Can you please show some more lines.
by larsa
Tue Feb 08, 2022 2:39 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Table cells color in preview panel but not in MSWord file
Replies: 5
Views: 4838

Re: Table cells color in preview panel but not in MSWord file

Hello

Cell colors works correct with version 2.
by larsa
Sat Feb 05, 2022 8:44 am
Forum: AXWWriter and DOCXReadWrite
Topic: Table cells color in preview panel but not in MSWord file
Replies: 5
Views: 4838

Re: Table cells color in preview panel but not in MSWord file

Hello

Have you tried the latest update? As you can see, the first posting is more than 4 years old...
by larsa
Wed Jan 19, 2022 3:49 pm
Forum: XLSSpreadSheet
Topic: Spreadsheet component in Delphi 11
Replies: 1
Views: 718

Re: Spreadsheet component in Delphi 11

Hello

I can't see any problem. SetCursorPos scrolls the sheet so that the cursor becomes visible.
by larsa
Fri Jan 14, 2022 12:38 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2395

Re: Some questions about DocxReadWrite

Hello

1. I will check this.

2. Use field codes for show page number.
by larsa
Mon Jan 10, 2022 8:53 am
Forum: AXWWriter and DOCXReadWrite
Topic: Possible Bug
Replies: 1
Views: 585

Re: Possible Bug

Hello

It's intentional. Using AddPara can be more efficient when building documents as the paragraph content don't have to be plain text, it can be tables, tabs, pictures etc.
by larsa
Tue Jan 04, 2022 1:06 pm
Forum: XLSSpreadSheet
Topic: Move sheet on screen
Replies: 2
Views: 630

Re: Move sheet on screen

Hello

As TXLSGrid is based on TDrawGrid, use methods and properties of TDrawGrid.

To set focus cell:

Code: Select all

XLSGrid1.Col := 14;
XLSGrid1.Row := 150;
by larsa
Tue Dec 21, 2021 12:14 pm
Forum: XLSReadWritwII 6
Topic: About TXLSReadWriteII5.LocalizedFormulas
Replies: 2
Views: 640

Re: About TXLSReadWriteII5.LocalizedFormulas

Hello

You can always try and see what happens... And if you is a registered user then you have the source code, and you ca read it. Not difficult at all...

No, LocalizedFormulas do not affect reading formulas.
by larsa
Tue Dec 21, 2021 12:08 pm
Forum: AXWWriter and DOCXReadWrite
Topic: Some questions about DocxReadWrite
Replies: 15
Views: 2395

Re: Some questions about DocxReadWrite

Hello

I assume you mean DOTX files (DOT or DOC files are not supported). A DOTX file is the same as a DOCX file and it is supported.
by larsa
Mon Dec 20, 2021 9:13 am
Forum: AXWWriter and DOCXReadWrite
Topic: Formatting a complex field
Replies: 2
Views: 726

Re: Formatting a complex field

Hello

Yes format was not saved for instrText. I will post an update which fixes this.