Search found 240 matches

by standay
Thu Jul 17, 2025 9:05 pm
Forum: Support
Topic: Bad RTF table causing RichView to error
Replies: 17
Views: 60730

Re: Bad RTF table causing RichView to error

Sergey may have a better idea, but here's mine.

I'm not entirely sure what all the vars are that are in play, but maybe change this:

for i:=maxIndex downto minIndex do begin //JGK was CurItem+reader.ItemCount-ItemCount+1 do begin
// Double-check bounds before accessing
if (i < 0) or (i ...
by standay
Thu Jul 17, 2025 10:49 am
Forum: Support
Topic: Linux Wordwrap
Replies: 2
Views: 11575

Re: Linux Wordwrap

Sergey,

I'm trying to run a windows app using wine on linux mint. The text in any paragraph would not wordwrap correctly.

I tried assigning RVStyle.TextEngine = rvteWindows, and yes, that fixes it. The usp10.dll exists in my wine windows system32 folder so not sure why it doesn't work as is.

I ...
by standay
Thu Jul 17, 2025 8:59 am
Forum: Support
Topic: Bad RTF table causing RichView to error
Replies: 17
Views: 60730

Re: Bad RTF table causing RichView to error

You might check that i <> -1, and i <= reader.itemcount-1.

Stan
by standay
Wed Jul 16, 2025 8:54 pm
Forum: Support
Topic: Linux Wordwrap
Replies: 2
Views: 11575

Linux Wordwrap

Sergey,

Is there something I need to do to get a regular rve to wordwrap when run in linux wine? I'm using linux mint 21.2 in a virtualbox VM. Could the VM or its settings be the issue?

Thanks

Stan
by standay
Sun Jul 06, 2025 12:13 pm
Forum: Support
Topic: Always Show Scrollbars
Replies: 0
Views: 16665

Always Show Scrollbars

Sergey,

There's a win11 setting called "Always Show Scrollbars." If this is turned off (the default for win11 I think), the scrollbar thumbs show up when you mouse over the scrollbar. If it's on, the thumbs are always visible.

The rve scrollbars do not seem to respond to this setting and seem to ...
by standay
Tue Jun 17, 2025 10:39 am
Forum: Support
Topic: Tab Key Behavior with Bulleted Lists in TRichViewEdit
Replies: 1
Views: 17222

Re: Tab Key Behavior with Bulleted Lists in TRichViewEdit

I use the TrvActionIndentDec (action for "Decrease Indent" command) and TrvActionIndentInc (action for "Increase Indent" command) actions. I have those assigned to some toolbar buttons.

I also put this into the rveKeyPress event so I can select some text and move it in or out using tab/shift+tab ...
by standay
Thu May 29, 2025 6:53 pm
Forum: Support
Topic: Activate Insert Key
Replies: 2
Views: 28546

Re: Activate Insert Key

Sergey Tkachenko wrote: Thu May 29, 2025 3:52 pm Sorry, what's "insert key"?
Sergey, I think he means this:

viewtopic.php?t=171

Stan
by standay
Thu May 22, 2025 9:08 pm
Forum: Support
Topic: RTF issue in TRichViewEdit when created run-time
Replies: 3
Views: 32889

Re: RTF issue in TRichViewEdit when created run-time

Only thing I can think of is check the run-time rve RTFOptions and make sure they match the rve RTFOptions that works.

Stan
by standay
Tue Mar 25, 2025 1:20 pm
Forum: Support
Topic: emoji icon
Replies: 1
Views: 47809

emoji icon

Hi Sergey,

I found the following in an old forum post:

For example, you can type 1F43B, press Alt+X, and it will be converted to 🐻 (your browser may convert this character to emoji icon; TRichView does not do it)

Alt + X works fine, but a regular trichview shows a b/w character. Is there any ...
by standay
Thu Mar 20, 2025 6:01 pm
Forum: Support
Topic: cloudfare
Replies: 2
Views: 70053

Re: cloudfare

Thanks Sergey. Hope it's resolved soon.
by standay
Thu Mar 20, 2025 3:52 pm
Forum: Support
Topic: cloudfare
Replies: 2
Views: 70053

cloudfare

Any one else having HUGE issues with cloudfare checking that "I'm Human" before opening this site? It's a huge PITA.


:x
by standay
Sun Jan 05, 2025 10:13 am
Forum: Support
Topic: webp images not saving in rvf in version 23
Replies: 4
Views: 125441

Re: webp images not saving in rvf in version 23

Sergey Tkachenko wrote: Sat Jan 04, 2025 10:13 pm Fixed in version 23.0.1
Works great, thanks Sergey.

Stan
by standay
Fri Jan 03, 2025 1:26 pm
Forum: Support
Topic: webp images not saving in rvf in version 23
Replies: 4
Views: 125441

Re: webp images not saving in rvf in version 23

I might have been mistaken on older versions. At any rate, I came up with the following function yesterday that converts a webp to png and this seems to work:

function TForm1.ProcessWEBP(rv: TCustomRichViewEdit; FileName: string): boolean;
var
gr: TRVGraphic;
bmp: TBitMap;
begin

result ...
by standay
Fri Jan 03, 2025 11:45 am
Forum: Support
Topic: Urgent Print Preview Problem - v23
Replies: 3
Views: 107314

Re: Urgent Print Preview Problem - v23

Thanks Sergey. I figured it was some sort of debug code that slipped through.

For now I reinstalled 22.4 so I'll wait for an update for this v23 issue.

Have you had a chance to look at webp images inserting/dropping OK but not getting reloaded in rvf format files?

Thanks for your help!

Stan
by standay
Thu Jan 02, 2025 9:58 pm
Forum: Support
Topic: Urgent Print Preview Problem - v23
Replies: 3
Views: 107314

Urgent Print Preview Problem - v23

Hi Sergey,

I'm using rve v23. With this version, whenever I do a print preview of a doc with images in it, it starts putting copies of those images in the folder where the exe is. It is naming them like this: img129.bmp, img964.bmp, and so on ad infinitum...

Each image is called imgXXX.bmp. And it ...