Search found 297 matches
- Wed Oct 09, 2024 7:36 pm
- Forum: Support
- Topic: Fastest way to get text from an RichViewEdit
- Replies: 1
- Views: 2202
Fastest way to get text from an RichViewEdit
I am trying to determine which function would be faster. Any tips? function TFmBibleSearch.GetInputText: UnicodeString; begin Result := RVGetTextRange(rvInput, 0, RVGetTextLength(rvInput)); //remove new lines Result :=GlobalUtils.StringReplaceU(Result, #13, ''); Result :=GlobalUtils.StringReplaceU ...
- Thu Sep 12, 2024 7:29 pm
- Forum: Support
- Topic: RVPrint.OnPrintComponent
- Replies: 2
- Views: 7681
Re: RVPrint.OnPrintComponent
No worries you are an excellent programmer. I just couldn't solve it. Thank you for explaining
- Thu Sep 12, 2024 5:44 pm
- Forum: Support
- Topic: RVPrint.OnPrintComponent
- Replies: 2
- Views: 7681
RVPrint.OnPrintComponent
In version 22.2 of TRichView component RVPrint I am using Delphi12.1: I am running into TRVBitmap however I can't find RVGraphic or the unit that contains this. (I would rather not upgrade to 22.4 if possible since we normally have to do quite a bit to support each update in our code.) procedure ...
- Wed Sep 04, 2024 6:45 pm
- Forum: Support
- Topic: Scroll Past end of document with BottomMargin
- Replies: 2
- Views: 10082
Re: Scroll Past end of document with BottomMargin
Thanks sir works well.
- Fri Jul 19, 2024 1:20 am
- Forum: Support
- Topic: Scroll Past end of document with BottomMargin
- Replies: 2
- Views: 10082
Scroll Past end of document with BottomMargin
I am working on getting a RVEdit to scroll until a checkpoint lines up with the top of a RVEdit view. As recommended elsewhere I am using BottomMargin. Y := 0; if RVData is TRvTableCellData then (RVData as TRvTableCellData).GetOrigin(X, Y); Y := RVData.GetCheckPointYEx(CPD) + Y; if Y > (rv ...
- Thu May 30, 2024 7:34 pm
- Forum: Support
- Topic: merge items in RV17.6.2--RV22
- Replies: 16
- Views: 41599
Re: merge items in RV17.6.2--RV22
Thanks sir appreciate your work.
- Sat Apr 13, 2024 12:17 am
- Forum: Support
- Topic: Empty text item possible?
- Replies: 5
- Views: 18687
Re: Empty text item possible?
Can hidden items interact with a mouse hover? I suppose an empty item wouldn't either hmms.
- Fri Apr 12, 2024 8:19 pm
- Forum: Support
- Topic: Empty text item possible?
- Replies: 5
- Views: 18687
Re: Empty text item possible?
I assume by editing, if a user types, but not if the editing is done via code? This is mainly a display with out user editing.
- Fri Apr 12, 2024 4:51 pm
- Forum: Support
- Topic: Empty text item possible?
- Replies: 5
- Views: 18687
Empty text item possible?
I am in need of a text item that has a tag but has no text is this possible?
I would rather not use Zero Width Space etc.
I would rather not use Zero Width Space etc.
- Sat Mar 30, 2024 7:08 pm
- Forum: Examples, Demos
- Topic: [Demo] Editors in editors
- Replies: 16
- Views: 89892
Re: [Demo] Editors in editors
It appears that I needed to set the subEditor.Height to something like subEditor.Height := 1; and likewise with subEditor.Width:=1; Now it is working well, not more extra formatting. Thanks again for your help Sergey
- Fri Mar 29, 2024 5:06 pm
- Forum: Examples, Demos
- Topic: [Demo] Editors in editors
- Replies: 16
- Views: 89892
Re: [Demo] Editors in editors
Thanks for that suggestion, I went through and no, no reformatting that is triggered before this is formatted.
I went digging I double checked that my subEditor is created once each time it is used.
I went digging I double checked that my subEditor is created once each time it is used.
- Thu Mar 28, 2024 10:40 pm
- Forum: Examples, Demos
- Topic: [Demo] Editors in editors
- Replies: 16
- Views: 89892
Re: [Demo] Editors in editors
I tried reproducing this error in another project but I couldn't make it happen. Today as I was trying different things I came across TRichView.Format_ when I set OnlyResized to True in the subEditors it produced a similar error. Is it possible that Format/FormatTail for my TRichViewEdit somehow has ...
- Wed Mar 27, 2024 9:11 pm
- Forum: Support
- Topic: merge items in RV17.6.2--RV22
- Replies: 16
- Views: 41599
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.
So we are good to go! Thank you again sir.
- Wed Mar 27, 2024 9:10 pm
- Forum: Support
- Topic: merge items in RV17.6.2--RV22
- Replies: 16
- Views: 41599
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?
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?
- Wed Mar 27, 2024 3:41 pm
- Forum: Support
- Topic: merge items in RV17.6.2--RV22
- Replies: 16
- Views: 41599
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.