Search found 235 matches

by standay
Tue Jun 17, 2025 10:39 am
Forum: Support
Topic: Tab Key Behavior with Bulleted Lists in TRichViewEdit
Replies: 1
Views: 4440

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: 13794

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: 16143

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: 41159

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: 64421

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: 64421

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: 121020

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: 121020

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: 103783

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: 103783

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 ...
by standay
Wed Jan 01, 2025 11:47 am
Forum: Support
Topic: webp images not saving in rvf in version 23
Replies: 4
Views: 121020

webp images not saving in rvf in version 23

Hi Sergey,

I've run into an issue where I can insert (by code or by drag and drop) a webp image. It inserts OK, and saves OK. But once I save the rvf file and reopen it, any webp images show as a big "X" in my app (and throws an rve "Error loading file" error in other apps).

SVG, PNG, etc. still ...
by standay
Sun Nov 17, 2024 12:35 pm
Forum: Support
Topic: GetSelectionRect Live
Replies: 2
Views: 85981

Re: GetSelectionRect Live

What I'm wanting to do is to match the edges of a selected image to the edge of another. A guide line would help do that. I was thinking of adding one when an image is selected and resized. I actually got that working (see below). An optional way to do it might be to add guide lines (maybe "pulled ...
by standay
Sat Nov 16, 2024 2:25 pm
Forum: Support
Topic: GetSelectionRect Live
Replies: 2
Views: 85981

GetSelectionRect Live

Sergey,

Is there a way to get the selection rectangle as it's being drawn when I'm resizing an image? I tried GetSelectionRect and that gives me the correct rectangle but only after I let go of the mouse button. I want the size of the new selection I'm making with the mouse.

Thanks

Stan
by standay
Fri Jul 26, 2024 12:15 pm
Forum: Support
Topic: Scrollbar Popup Menu
Replies: 3
Views: 92547

Re: Scrollbar Popup Menu

Hi Sergey,

Probably no one cares about this but I thought I'd post a follow up. While subclassing the TRichViewEdit let me show a popupmenu when right-clicking the rve scrollbar, it was causing some unintended problems elsewhere in my app. It would work OK in a simple project, but my project is not ...
by standay
Wed Jul 24, 2024 7:43 pm
Forum: Support
Topic: TRVSpellChecker Add
Replies: 2
Views: 80841

Re: TRVSpellChecker Add

Hi Sergey,

Yes, it does work. I found that on Win11 for it to work, however, you have to be sure the Custom inking and typing dictionary is ON . Mine was OFF. Turning it back on now allows adding words and enables using them as suggestions later.

However, if you toggle the Custom inking and typing ...