Search found 64 matches

by tiagosis
Mon Mar 03, 2025 4:26 pm
Forum: Support
Topic: RTF to Docx
Replies: 17
Views: 174770

Re: RTF to Docx

Yes, it follows. My problem is precisely when I import the rtf into the editor, the text already comes out of the encoding, however, when I open it through the DBForge viewer the text displays correctly.
by tiagosis
Mon Mar 03, 2025 3:38 pm
Forum: Support
Topic: RTF to Docx
Replies: 17
Views: 174770

RTF to Docx

Hello, I'm migrating my texts from RTF to DOCx but the texts are losing their encoding, how can I solve this?
Here's an example.

RTF: PROCURAÇÃO
...AFTER CONVERTED TO doCX
docX: PROCURAÇÃO
by tiagosis
Mon Feb 24, 2025 8:41 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

Re: TSRichViewEdit for large volumes of text and images

I would like to say that despite having purchased the latest version of TRichView, I haven't updated it yet, I'm using version 17. Could this be having an influence?
by tiagosis
Mon Feb 24, 2025 8:33 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

Re: TSRichViewEdit for large volumes of text and images

when I use: SRichViewEdit1.RichViewEdit.SaveRVFToStream(_stream,false);

everything works perfectly, including:

(FieldByName('TEXT') as TBlobField).SaveToStream(_stream);
_stream.Position := 0;
SRichViewEdit1.RichViewEdit.LoadFromStream(_stream,rvynaAuto);
SRichViewEdit1.RichViewEdit.Format;
by tiagosis
Mon Feb 24, 2025 6:53 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

Re: TSRichViewEdit for large volumes of text and images

I decided to follow your recommendation and changed the field type to LONGBLOB to receive the content, I started saving as Docx with "SRichViewEdit1.RichViewEdit.SaveDocXToStream(_stream,false);", the size decreased considerably to 10mb.

however,

_stream := TMemoryStream.Create;
(FieldByName ...
by tiagosis
Mon Feb 24, 2025 2:45 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

Re: TSRichViewEdit for large volumes of text and images

I already did as you instructed me before saving the text in the database, but I believe the text size will have to be even smaller...
example of my code before saving:

var
_stream : TMemoryStream;
begin
try
_stream := TMemoryStream.Create;

SRichViewEdit1.RichViewEdit.RTFOptions ...
by tiagosis
Mon Feb 24, 2025 2:42 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

Re: TSRichViewEdit for large volumes of text and images

Hello, I just sent an example text to your email. Adding some questions, yes, I use it in RTF format with the field in the database configured as LONGTEXT, it turns out that before we didn't have the need to save images, just text, and over time the need to include images arose in the text, and it ...
by tiagosis
Thu Feb 20, 2025 7:35 pm
Forum: Support
Topic: TSRichViewEdit for large volumes of text and images
Replies: 10
Views: 155968

TSRichViewEdit for large volumes of text and images

Hello, I use TSRichViewEdit for large volumes of text and images, it turns out that the size of the file in my database, field type LONGTEXT, is huge. This causes extreme slowness when saving and opening stored texts, how can I get around this? thanks.
by tiagosis
Mon Feb 22, 2021 3:42 pm
Forum: Support
Topic: block edit after print
Replies: 9
Views: 33872

Re: block edit after print

i save in RTF
by tiagosis
Thu Feb 18, 2021 1:32 pm
Forum: Support
Topic: block edit after print
Replies: 9
Views: 33872

Re: block edit after print

the protection works when I send protection, so I save the text and when I reload "rvprParaStartProtect" it stops working, the text can be broken with enter at the beginning, what could I be doing to get around this?
by tiagosis
Wed Feb 17, 2021 3:10 pm
Forum: Support
Topic: block edit after print
Replies: 9
Views: 33872

Re: block edit after print

Else, how can I test if there are protected passages in the text?
by tiagosis
Wed Feb 17, 2021 2:08 pm
Forum: Support
Topic: block edit after print
Replies: 9
Views: 33872

Re: block edit after print

I implemented the lock using: ProtectionOptions = [rvprModifyProtect, rvprDeleteProtect, rvprStyleProtect, rvprDoNotAutoSwitch, rvprStickToTop,rvprSticking];
but control + enter is still able to disorganize the text, any idea how to block control + enter?
thanks
by tiagosis
Tue Feb 16, 2021 7:28 pm
Forum: Support
Topic: block edit after print
Replies: 9
Views: 33872

block edit after print

hello, is it possible for me to block changes to a certain block of texts?
I would like to block the editing of texts always after printing, so that even the point where it was printed could no longer be changed, but that there is the possibility of breaking the line after the printed point and ...
by tiagosis
Mon Jan 11, 2021 3:42 pm
Forum: Support
Topic: Check if the line is empty
Replies: 1
Views: 14024

Check if the line is empty

how can I check if there are characters on a specific line? or check if a specific line is empty?
by tiagosis
Fri Jan 08, 2021 8:31 pm
Forum: Support
Topic: copy text from the cursor
Replies: 9
Views: 34013

Re: copy text from the cursor

the first code worked well, the others were not successful, in any case it was resolved, thanks.