Search found 23 matches

by sorega2022
Sat Jul 06, 2024 9:44 am
Forum: Support
Topic: New Updates
Replies: 2
Views: 9956

Re: New Updates

Thank you. i can open all without error
by sorega2022
Sat Jul 06, 2024 4:34 am
Forum: Support
Topic: New Updates
Replies: 2
Views: 9956

New Updates

I installed your latest update and i get now errors while opening my project.
Perhaps it is the reason that i get 2 components to update, but i downloaded only 1 and installed this. But now i cannot find the second to install.
Can it be reason? Where i can find the second update?
by sorega2022
Tue Jul 02, 2024 2:52 pm
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

At creation of a table i have to fix how many rows and cols i will have. I know the cols, but i dont know the rows. is it possible to change this while filling the table? can i change the count of rows while doing?
by sorega2022
Sun Jun 30, 2024 11:23 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

Thank you very much. The CanUpdate := true was that what i needed.

The next problem is to set the table. do you have some special samples for generating a table? to work with bestwidth and so on
by sorega2022
Sun Jun 30, 2024 4:38 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

Oh. Thank you. Your tool is very sensible. I put only RVAControlPanel1.Activate in the first line of the Form.Create and all was ok. That was the missing connection. I can change to justify and i can change the format. The saving is ok und on printing i have all these changes. Now i have still the ...
by sorega2022
Sat Jun 29, 2024 11:14 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i am testing the RichViewEditor. i think there is the connection between the buttons above to the RichViewEdit missing. If i select a text and click on bold, not reaction at the text. The same with font and font size. If i close there is no question to save. If i start the RichViewEditor again, the ...
by sorega2022
Sat Jun 29, 2024 9:28 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i remembered now, that in my RichViewEditor is no style template. In your sample i can click NEW or load a file and i have a template. Where does it coming from? Perhaps there is missing in my source code. Which line in my source code opens this style template? I thought it is cmbStyles.Localize. I ...
by sorega2022
Fri Jun 28, 2024 7:57 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i cannot send you the whole project. You cannot do anything without database. but i can send you the .pas of the RichViewEditor. Is it that what you want?
by sorega2022
Fri Jun 28, 2024 3:59 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

The action of the button is like you wrote
by sorega2022
Thu Jun 27, 2024 8:49 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i imported the whole form. My changes at FormShow if TransDateiname = '' then begin Toolbutton11.Enabled := true; // Neu Toolbutton1.Enabled := true; // Öffnen rvActionNew1.ExecuteTarget(RichViewEdit1); end else begin Toolbutton11.Enabled := false; // Neu Toolbutton1.Enabled := false; // Öffnen if T ...
by sorega2022
Thu Jun 27, 2024 8:12 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

I used ...\TRichView\RichViewActions\Demos\DelphiUnicode\ActionTest
Yes. I saw the FormCloseQuery and it works correct if i change a letter or something else. But it does not work if i mark the text and press justify. Justify is status on but no reaction an the text
by sorega2022
Wed Jun 26, 2024 1:26 pm
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i think, that will be the problem. I am using your sample for editing RichView. But there is no heading. i can select the text and click on Justify. but the text will not move to Justify. Is that ok? Or should i see it in the editor too? if i close the editor it should save the text with formatings ...
by sorega2022
Thu Jun 20, 2024 9:09 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

i use SRichViewEdit.Format i have many RichView files. Some include only titles, this war centered. but all other include text, which should be shown as justified. i take all single RichView files and put it into 1 RichView file together. That works very fine. This RichView file will be loaded in ...
by sorega2022
Thu Jun 20, 2024 6:11 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

srveView.UnitsProgram := rvuCentimeters; srveView.PageProperty.LeftMargin := 2; (default: 3) srveView.PageProperty.RightMargin := 1; (default: 3) srveView.PageProperty.TopMargin := 1; (default: 2.5) srveView.PageProperty.BottomMargin := 1; (default: 2.5) i make this. but it does not work. i changed ...
by sorega2022
Tue Jun 18, 2024 5:39 am
Forum: Support
Topic: Append many RichView files in an other RichView file
Replies: 26
Views: 37187

Re: Append many RichView files in an other RichView file

Thank you. That works. The parts of the text are bold like in Editor. But if i mark the text as justified, it marks the button in editor, but on printing it is not justified. Is there anything else to do? An other problem is, that i need to change the margins. I am using your sample MakeSRVDoc. I ...