Search found 308 matches

by jgkoehn
Wed Jul 16, 2025 12:04 am
Forum: Support
Topic: odd formatting issue - not sure of the cause.
Replies: 1
Views: 517

odd formatting issue - not sure of the cause.

Here is the good format
good-formatting.jpg
good-formatting.jpg (232.61 KiB) Viewed 517 times
Sometimes it just loads like this. If the topic is reloaded it can then be fine.
bad-formatting.jpg
bad-formatting.jpg (182.82 KiB) Viewed 517 times
by jgkoehn
Tue Jul 15, 2025 9:46 pm
Forum: Support
Topic: Bad RTF table causing RichView to error
Replies: 4
Views: 2212

Re: Bad RTF table causing RichView to error

It is highly possible I've done something wrong and just have no idea on how to get to the bottom of it.
by jgkoehn
Tue Jul 15, 2025 6:50 pm
Forum: Support
Topic: Bad RTF table causing RichView to error
Replies: 4
Views: 2212

Re: Bad RTF table causing RichView to error

Is this related Sergey?
It is showing up in the Richview interface but not always.
by jgkoehn
Sat Jul 12, 2025 8:53 pm
Forum: Support
Topic: Bad RTF table causing RichView to error
Replies: 4
Views: 2212

Bad RTF table causing RichView to error

Greetings Sergey,

I am getting an error in this code:
First chance exception at $75D50144. Exception class EListError with message 'List index out of bounds (-1). TRVList is empty'.
I know it is bad RTF code on a Table (however, I can't always fix the bad RTF tables. These can be from users. Is ...
by jgkoehn
Wed Jul 09, 2025 8:48 pm
Forum: Support
Topic: HighDPI Windows zoom
Replies: 3
Views: 8428

Re: HighDPI Windows zoom

I think I found it: PixelsPerInch this was used through out with TRStyles and so I need to go throughout and update.
reader2.Style.TextStyles.PixelsPerInch
by jgkoehn
Wed Jul 09, 2025 4:37 pm
Forum: Support
Topic: HighDPI Windows zoom
Replies: 3
Views: 8428

Re: HighDPI Windows zoom

I read some place else that it is natively supported. So I must have something on I don't need???
Ideas on what that could be?
by jgkoehn
Wed Jul 09, 2025 4:23 pm
Forum: Support
Topic: HighDPI Windows zoom
Replies: 3
Views: 8428

HighDPI Windows zoom

I am working on making our application support Zoom in WIndows 125%, 150% etc.
For alot of forms there is a scaled option.
I know I could use RichView.DocumentPixelsPerInch = 144, instead of the normal 96.

Is there a way to adjust this behind the scenes to RichView itself? We are using primarily ...
by jgkoehn
Thu May 29, 2025 6:59 pm
Forum: Support
Topic: Building document on scroll
Replies: 1
Views: 16972

Building document on scroll

Is there a way to add to a document on scroll instead of all at the start?
practically would it help with extremely big documents? Or with documents that have TRichviewEdit subeditors?
by jgkoehn
Thu Jan 23, 2025 7:37 pm
Forum: Examples, Demos
Topic: [Demo] Editors in editors
Replies: 18
Views: 621376

Re: [Demo] Editors in editors

Is there a way when an editor is in an editor to make it so that it doesn't have a background color on the paragraph?
I would like to be able to highlight text in the future but for now I wnat to make the editor's background transparent. That way if there is an image or color behind it that is ...
by jgkoehn
Thu Jan 02, 2025 9:21 pm
Forum: Support
Topic: RichViewEdit format without a component
Replies: 2
Views: 94081

Re: RichViewEdit format without a component

Or does rvdata.NormalizeDocument(0,True); essentially concate as needed? If so perhaps I am missing something else in my code.
by jgkoehn
Thu Jan 02, 2025 8:27 pm
Forum: Support
Topic: RichViewEdit format without a component
Replies: 2
Views: 94081

RichViewEdit format without a component

I am using the following code TRichViewEditEx is basically TRichViewEdit with a bit more.
I need to run rv.Format but I get a parent error. The reason I need to run format is I am having trouble with some links not being the same. Either that or I am missing something else.
It is a tricky bug in my ...
by jgkoehn
Wed Oct 09, 2024 7:36 pm
Forum: Support
Topic: Fastest way to get text from an RichViewEdit
Replies: 1
Views: 77083

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 ...
by jgkoehn
Thu Sep 12, 2024 7:29 pm
Forum: Support
Topic: RVPrint.OnPrintComponent
Replies: 2
Views: 92389

Re: RVPrint.OnPrintComponent

No worries you are an excellent programmer. I just couldn't solve it. Thank you for explaining
by jgkoehn
Thu Sep 12, 2024 5:44 pm
Forum: Support
Topic: RVPrint.OnPrintComponent
Replies: 2
Views: 92389

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 ...
by jgkoehn
Wed Sep 04, 2024 6:45 pm
Forum: Support
Topic: Scroll Past end of document with BottomMargin
Replies: 2
Views: 91792

Re: Scroll Past end of document with BottomMargin

Thanks sir works well.