Search found 222 matches

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

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

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

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

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

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

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

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

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

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

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

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

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

Re: Skia with latest richview and delphi 10.3

OK, thanks Sergey.

Stan
by standay
Tue Apr 23, 2024 5:17 pm
Forum: Support
Topic: Skia with latest richview and delphi 10.3
Replies: 2
Views: 13100

Skia with latest richview and delphi 10.3

Hi Sergey, I'm using delphi 10.3.along with the latest version of skia4delphi. My question is, with delphi 10.3 and latest skia and latest richview will I still need to have skd4.dll (or some other skia dll) in my app folder in order for skia to run? I have it running with an older rve (21.7.3) but ...
by standay
Sat Apr 20, 2024 9:09 pm
Forum: Support
Topic: skia4delphi and svg
Replies: 2
Views: 12939

Re: skia4delphi and svg

OK, that's what I thought might be the case.

Thanks Sergey