Search found 285 matches

by jgkoehn
Wed Mar 27, 2024 9:11 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

Ah it seems to have worked right off in the Delphi 7.1/12 without the re-install
So we are good to go! Thank you again sir.
by jgkoehn
Wed Mar 27, 2024 9:10 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

[EDIT]please ignore all is fixed
Excellent thank you sir,
The install is not picking up my Delphi 7.1 or Delphi 12 hmms
Is there a manual way to rebuild or is it complex?
by jgkoehn
Wed Mar 27, 2024 3:41 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

I found if I move the space out with a regex it works right but RegEx can't solve this it is often too complex.
by jgkoehn
Tue Mar 26, 2024 8:28 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

I tried the one that doesn't work in RV22 in RV17.6.2 ActionTestDemo and it works there but not in RV22
by jgkoehn
Tue Mar 26, 2024 8:01 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

Here is one that works well.
When I load this one directly in RV22 it works fine.
versetext - ABP.rtf
(3.45 KiB) Downloaded 1 time
by jgkoehn
Tue Mar 26, 2024 7:53 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

Here is a simple test file.
When I load this in RV22 directly it has troubles with the hyperlinks/text.
by jgkoehn
Tue Mar 26, 2024 7:26 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

They each have their own hyperlinks as shown in the RTF above. I will try to make the RTF above into a simple document.
by jgkoehn
Tue Mar 26, 2024 6:41 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

Here is the RTF at least the part I could get easily in Delphi7.1 so technically here is the actual text that is Greek: {\fldrslt \u915?\u945?\u912?\u8179?}}{...(Does NOT work) {\fldrslt \u949?\u957?}} {...(Does work) BSBGrkINT-----------------with English Does NOT work '{\rtf1\ansi\ansicpg0\deff0\d...
by jgkoehn
Tue Mar 26, 2024 6:36 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

Based on above the "space" position should not matter?
And if this hasn't changed then it would be on my end?
by jgkoehn
Tue Mar 26, 2024 6:09 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

I may have changed code always possible but I am trying to be very careful with RV code: here is what we are using for RTF could it be "Merging"? rv.RTFReadProperties.ParaStyleMode := rvrsAddIfNeeded; {PI} with rv.Style do for i:=0 to DEF_PARA_STYLES-1{ParaStyles.Count-1} do ParaStyles[i]....
by jgkoehn
Tue Mar 26, 2024 6:06 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

Re: merge items in RV17.6.2--RV22

If it helps this works fine in RV17 but not in RV22 so no changes really on our end as best I can in this regard. I have two computers old version works fine under RV17. And new version on antoher computer under RV22 has this problem. We are loading through RTF Edit: As I dig deeper it seems related...
by jgkoehn
Tue Mar 26, 2024 5:02 pm
Forum: Support
Topic: merge items in RV17.6.2--RV22
Replies: 14
Views: 234

merge items in RV17.6.2--RV22

Greetings Sergey, Is there a new feature that merges items in RV later than 17.6.2 especially RV22. Working on upgrading and somehow my items are merging. Theyhave the same font, etc but they have different tags. For example: |The item1| cat item2| ate item3| Has become: |The cat ate item1| Edit: As...
by jgkoehn
Tue Mar 19, 2024 6:30 pm
Forum: Examples, Demos
Topic: [Demo] Editors in editors
Replies: 12
Views: 43559

Re: [Demo] Editors in editors

I am going to try to updated to RV22 (this project is Delphi7.1 with RV17) and see if the problem still exists. If so then I will try though it is very complex unfortunately. I am afraid there are so many possibilities. 1. We load data converting into RTF then load that into RichView (no format yet)...
by jgkoehn
Sat Mar 16, 2024 11:41 pm
Forum: Examples, Demos
Topic: [Demo] Editors in editors
Replies: 12
Views: 43559

Re: [Demo] Editors in editors

I seem to get some 0 and other the subEditors height unless I set it like 200; The below is just letting it use
intRVE.Height := intRVE.RVData.DocumentHeight;
height-error.JPG
height-error.JPG (51.2 KiB) Viewed 6443 times
by jgkoehn
Sat Mar 16, 2024 10:34 pm
Forum: Examples, Demos
Topic: [Demo] Editors in editors
Replies: 12
Views: 43559

Re: [Demo] Editors in editors

Getting there on the resize but I am running into something odd: This seems to do pretty good except for: intRVE.Height := intRVE.RVData.DocumentHeight; Even though DocumentHeight is the right size intRVE.Height always stays at 0??? right now I am trying this right before the main rve.format; I have...