Search found 5 matches
- Sat Apr 21, 2018 2:48 pm
- Forum: Support
- Topic: save TDBRichViewEdit configuration
- Replies: 3
- Views: 14931
Re: save TDBRichViewEdit configuration
Good morning, I'm using the following code. rvemain.DocParameters.PageWidth: = 21; rvemain.DocParameters.PageHeight: = 29; rvemain.DocParameters.LeftMargin: = 2; rvemain.DocParameters.RightMargin: = 2; rvemain.DocParameters.TopMargin: = 2; rvemain.DocParameters.BottomMargin: = 2; rveMain.Format; It ...
- Thu Apr 19, 2018 9:59 pm
- Forum: Support
- Topic: save TDBRichViewEdit configuration
- Replies: 3
- Views: 14931
save TDBRichViewEdit configuration
good night, friends, I started to study the component a little time I would like some tips. to find out how I can save the page's consigments in the database and load pull the text from the database here an A4 page. the way I'm doing when formatting the system is applying to all pages when I load ...
- Thu Apr 19, 2018 9:50 pm
- Forum: Support
- Topic: find word in text and swap by value coming from database
- Replies: 4
- Views: 16538
Re: find word in text and swap by value coming from database
I was able to solve with the following code.
var text: string;
begin
text: = rvemain.GetSelText;
rvemain.SetSelectionBounds (0, rvemain.GetOffsBeforeItem (0), 0, rvemain.GetOffsBeforeItem (0));
while rvemain.SearchText (text, [rvseoDown])
rvemain.InsertText ('raimundo silva');
var text: string;
begin
text: = rvemain.GetSelText;
rvemain.SetSelectionBounds (0, rvemain.GetOffsBeforeItem (0), 0, rvemain.GetOffsBeforeItem (0));
while rvemain.SearchText (text, [rvseoDown])
rvemain.InsertText ('raimundo silva');
- Wed Apr 11, 2018 12:31 am
- Forum: Support
- Topic: find word in text and swap by value coming from database
- Replies: 4
- Views: 16538
Re: find word in text and swap by value coming from database
Thanks for the help, it worked. how can I use this code to change the selected value in the editor instead of using tags. I'm really enjoying the component.
- Sat Apr 07, 2018 2:10 am
- Forum: Support
- Topic: find word in text and swap by value coming from database
- Replies: 4
- Views: 16538
find word in text and swap by value coming from database
Hi, I'm new here. I downloaded the trial version of the tool to see if it meets my needs and I'm studying it. my question and the following I am making a publisher to issue lease I would like to know if it has any function that I can exchange a word in the middle of the text by outrar. Type where ...