RichEdit control: Determine when text is changed?
Posted
by Rosarch
on Stack Overflow
See other posts from Stack Overflow
or by Rosarch
Published on 2010-06-10T01:20:38Z
Indexed on
2010/06/10
1:22 UTC
Read the original article
Hit count: 296
I'm trying to count the number of times that text is changed in a given RichEdit control. I considered using events like key down, but that gets messy when you consider keys that don't change the text (like arrows, page up, etc). And how do you make sure you get all of those keys?
It seems it would be simpler to register a callback for a onTextChanged
event, if one exists. Is there any way to do something like that?
© Stack Overflow or respective owner