Search found 2 matches

by paul.softin
Wed Jun 23, 2021 9:30 am
Forum: Support
Topic: Dragon Naturally Speaking 9.5
Replies: 16
Views: 80914

Re: Dragon Naturally Speaking 9.5

Hello,

Finally I got it working

1) add TRichViewEdit=1 in nsapps.ini
2) handle this messages

TRichViewEdit = class(RVEdit.TRichViewEdit)
private
FLastPos: Integer;
FLastChar: Integer;
FLastLen: Integer;
FLastText: string;
procedure EMReplaceSel(var Msg: TMessage); message EM_REPLACESEL ...
by paul.softin
Thu Jun 17, 2021 8:48 am
Forum: Support
Topic: Dragon Naturally Speaking 9.5
Replies: 16
Views: 80914

Re: Dragon Naturally Speaking 9.5

Hello,

I'm still playing with the Dragon

to implement EM_POSTFROMCHAR I need to return the pixel position of the nth character for the text

I've made a quick test with TMemo with a the text "test"

EM_POSFROMCHAR -1, 0 returns $FFFFFFFF
EM_POSFROMCHAR 0, 0 returns MakeLong(1, 4)
EM_POSFROMCHAR 1 ...