Search found 224 matches

by standay
Sun Nov 17, 2024 12:35 pm
Forum: Support
Topic: GetSelectionRect Live
Replies: 2
Views: 727

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

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

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

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 ...
by standay
Wed Jul 24, 2024 12:42 pm
Forum: Support
Topic: TRVSpellChecker Add
Replies: 2
Views: 11161

TRVSpellChecker Add

Hi Sergey, When using the TRVSpellChecker and the SpellCheckrvActionSpellingCheck, when I check things by hitting F7, if I then click the "Add" button in the dialog while on a misspelled word, that word spell then checks OK. But, the next time I put that text in and recheck, it shows as misspelled ...
by standay
Fri Jul 19, 2024 3:15 pm
Forum: Support
Topic: Scrollbar Popup Menu
Replies: 3
Views: 15860

Re: Scrollbar Popup Menu

Hi Sergey, Yes, WM_NCRBUTTONDOWN (along with a HitTest check) works. My app already lets me choose between using a native scrollbar or an external one. Adding a popup to the external one is easy, but I was stumped with how to add it to the native scrollbar. Here's what I did in case someone else ...
by standay
Thu Jul 18, 2024 10:04 pm
Forum: Support
Topic: Scrollbar Popup Menu
Replies: 3
Views: 15860

Scrollbar Popup Menu

Sergey,

Would you have any idea on how to get a popupmenu to show when the rve vertical scrollbar is right clicked? I've looked all over and tried things and nothing works. Just wondered if you had any ideas.

Thanks

Stan
by standay
Tue Jul 09, 2024 5:52 pm
Forum: Support
Topic: Get TRVSpellChecker to Update
Replies: 5
Views: 17633

Re: Get TRVSpellChecker to Update

I am considering adding HunSpell as a fallback option for Windows (for older OS that do not support spellchecking). In this case, there may be an option to use HunSpell even if a native OS checker is available. This would be a good option to have although I'm very happy with the basic OS sp ...
by standay
Tue Jul 09, 2024 11:20 am
Forum: Support
Topic: Get TRVSpellChecker to Update
Replies: 5
Views: 17633

Re: Get TRVSpellChecker to Update

Hi Sergey, Thanks for the confirmation of how things are working. I was doing it that way. It looks like the main issue was I still didn't have all my old spell check stuff removed. Once I cleaned it all out, it appears to be working OK now. I like to be able to remove a word I might accidentaly add ...
by standay
Mon Jul 08, 2024 8:32 pm
Forum: Support
Topic: skia4delphi and svg;Skia with latest richview and delphi 10.3.
Replies: 2
Views: 11098

Re: skia4delphi and svg;Skia with latest richview and delphi 10.3.

Well, just my 2 cents worth. To use skia you'll have to drag around the skia dll with your app exe. But, if you do that it lets you open and use svg and webp files which I really liked. Now that I have the latest rve update I may put it back into my app again.

Stan
by standay
Mon Jul 08, 2024 3:14 pm
Forum: Support
Topic: Get TRVSpellChecker to Update
Replies: 5
Views: 17633

Get TRVSpellChecker to Update

Hi Sergey, I'm using my own popup menu for spelling. I used this before with my Hunspell stuff and it worked there. It works ok with the TRVSpellChecker as well until I add or remove a word from the system user dictionary. I get the system user dictionary using: GetEnvironmentVariable('APPDATA ...
by standay
Sun Jul 07, 2024 10:31 pm
Forum: Support
Topic: TRVSpellChecker.Suggest Leaks
Replies: 1
Views: 9701

Re: TRVSpellChecker.Suggest Leaks

Hi Sergey,

I think I have it now. I'm doing this:

Code: Select all

var
  templist: TStringList;  
  ...
  //NO TStringList.Create  
  templist := Form1.RVSpellChecker1.Suggest(Items[i]);
  ListBox2.Items.Text := templist.Text;
  templist.Free;
and all is well!

Stan
by standay
Sun Jul 07, 2024 9:28 pm
Forum: Support
Topic: TRVSpellChecker.Suggest Leaks
Replies: 1
Views: 9701

TRVSpellChecker.Suggest Leaks

Hi Sergey, I'm trying to get the list of suggested words from the TRVSpellChecker.Suggest list. When I do this: ListBox2.Items.Text := Form1.RVSpellChecker1.Suggest(Items[i]).Text; It works and gives me the list of suggestions, but when I close the app I get a lot of leaks. I'll attach the leak ...
by standay
Thu Apr 25, 2024 5:28 pm
Forum: Support
Topic: Wordwrap in linux
Replies: 0
Views: 22074

Wordwrap in linux

Hi Sergey, I run both ubuntu and mint in an oracle vm. When I'm in linux, I can run some windows apps using wine. If I use wine to run either my app or the Actiontestuni demo, they seem to work for the most part, however, wordwrap does not seem to work. In the wine environment the text is there but ...
by standay
Wed Apr 24, 2024 10:39 am
Forum: Support
Topic: Skia with latest richview and delphi 10.3
Replies: 2
Views: 13744

Re: Skia with latest richview and delphi 10.3

OK, thanks Sergey.

Stan