views:

134

answers:

1

Hi,

I have to read the text character by character from a RichTextBox in VC++. I need a function like getch or getche.

A: 

If you want to read the text while it is typed by the user, you'll have to attach to the "key up/down" or "text changed" events (depending on your ulterior motives).

David Schmitt